1
0
Fork 0

(svn r24559) -Fix (24542): Blocking script debug on non-dedicated servers is a not too much

release/1.3
zuu 2012-09-26 20:16:57 +00:00
parent 7e1c033c3f
commit f10c54633b
1 changed files with 1 additions and 1 deletions

View File

@ -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();