aboutsummaryrefslogtreecommitdiff
path: root/editor/editor_node.cpp
diff options
context:
space:
mode:
authorAndreas Haas2017-04-09 10:32:38 +0200
committerAndreas Haas2017-04-09 10:33:03 +0200
commit0029440955f6d500a0c97bf7348a7b5353db0cea (patch)
treeb616c388f88b5e54f29c78a2a961e444406317c5 /editor/editor_node.cpp
parent4286aef69313e048fa91710c35456c08a252fd3c (diff)
downloadgodot-0029440955f6d500a0c97bf7348a7b5353db0cea.tar.gz
godot-0029440955f6d500a0c97bf7348a7b5353db0cea.tar.zst
godot-0029440955f6d500a0c97bf7348a7b5353db0cea.zip
Fix warning message when EditorPlugin script is not in tool mode.
Diffstat (limited to '')
-rw-r--r--editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 1bd91d753..1708d2736 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -2815,7 +2815,7 @@ void EditorNode::set_addon_plugin_enabled(const String &p_addon, bool p_enabled)
}
if (!script->is_tool()) {
- show_warning("Unable to load addon script from path: '" + path + "' Script is does not support tool mode.");
+ show_warning("Unable to load addon script from path: '" + path + "' Script is not in tool mode.");
return;
}