From 5d036590ddddc52ffb90ac219f23b9e0ad51a66a Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 4 Apr 2025 09:20:06 +0200 Subject: [PATCH] Fix typo. --- modules/terraman/editor/terrain_world_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/terraman/editor/terrain_world_editor.cpp b/modules/terraman/editor/terrain_world_editor.cpp index 889de0a8d..d7af9003a 100644 --- a/modules/terraman/editor/terrain_world_editor.cpp +++ b/modules/terraman/editor/terrain_world_editor.cpp @@ -1126,7 +1126,7 @@ TerrainWorldEditor::TerrainWorldEditor(EditorNode *p_editor) { Button *bake_props_button = memnew(Button); bake_props_button->set_text(TTR("Bake Props")); - bake_props_button->set_tooltip(TTR("Takes the current world's direct child PropInstanceMergers, adds them directly as props and delets them.\mnThe ones that have a script attached will be skipped. Node names will be remembered.")); + bake_props_button->set_tooltip(TTR("Takes the current world's direct child PropInstanceMergers, adds them directly as props and delets them.\nThe ones that have a script attached will be skipped. Node names will be remembered.")); bake_props_button->connect("pressed", this, "_on_bake_props_button_pressed"); _baking_tools_tool_container->add_child(bake_props_button);