summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Haas <liu.gam3@gmail.com>2017-04-09 10:32:38 +0200
committerAndreas Haas <liu.gam3@gmail.com>2017-04-09 10:33:03 +0200
commit0029440955f6d500a0c97bf7348a7b5353db0cea (patch)
treeb616c388f88b5e54f29c78a2a961e444406317c5
parent4286aef69313e048fa91710c35456c08a252fd3c (diff)
Fix warning message when EditorPlugin script is not in tool mode.
-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 1bd91d753f..1708d27363 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;
}