From 0029440955f6d500a0c97bf7348a7b5353db0cea Mon Sep 17 00:00:00 2001 From: Andreas Haas Date: Sun, 9 Apr 2017 10:32:38 +0200 Subject: Fix warning message when EditorPlugin script is not in tool mode. --- editor/editor_node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3