From f10c54633b043fe3d9e6ce90ddedc8600467cf14 Mon Sep 17 00:00:00 2001 From: zuu Date: Wed, 26 Sep 2012 20:16:57 +0000 Subject: [PATCH] (svn r24559) -Fix (24542): Blocking script debug on non-dedicated servers is a not too much --- src/script/api/script_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/api/script_controller.cpp b/src/script/api/script_controller.cpp index e344f6edde..f74923739f 100644 --- a/src/script/api/script_controller.cpp +++ b/src/script/api/script_controller.cpp @@ -46,7 +46,7 @@ /* static */ bool ScriptController::Break(const char* message) { - if (!_network_dedicated || !_settings_client.gui.ai_developer_tools) return false; + if (_network_dedicated || !_settings_client.gui.ai_developer_tools) return false; ScriptObject::GetActiveInstance()->Pause();