From 9386fa1639ee8a5b91c65fa64638b7516bdfb1e4 Mon Sep 17 00:00:00 2001 From: Relintai Date: Tue, 6 Jun 2023 23:25:03 +0200 Subject: [PATCH] Fix typo. --- .../editor/navigation_polygon_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/navigation_mesh_generator/editor/navigation_polygon_editor_plugin.cpp b/modules/navigation_mesh_generator/editor/navigation_polygon_editor_plugin.cpp index c26e19d63..a6c8ab5f9 100644 --- a/modules/navigation_mesh_generator/editor/navigation_polygon_editor_plugin.cpp +++ b/modules/navigation_mesh_generator/editor/navigation_polygon_editor_plugin.cpp @@ -179,7 +179,7 @@ void NavigationPolygonEditor::_bake_pressed() { ERR_FAIL_COND(!node); Ref navigation_polygon = node->get_navigation_polygon(); if (!navigation_polygon.is_valid()) { - err_dialog->set_text(TTR("A NavigationMesh2D resource must be set or created for this node to work.")); + err_dialog->set_text(TTR("A NavigationPolygon resource must be set or created for this node to work.")); err_dialog->popup_centered(); return; }