1
0
Fork 0

(svn r7494) -Fix: Really disable AI's in Multiplayer if you tell it so. In loaded games with

AI's the setting didn't take effect, resulting in immediate desyncs.
release/0.5
Darkvater 2006-12-13 22:38:45 +00:00
parent a10dc3067a
commit dd42d07d2a
1 changed files with 2 additions and 2 deletions

View File

@ -170,8 +170,8 @@ void AI_RunGameLoop(void)
/* Don't do anything if ai is disabled */
if (!_ai.enabled) return;
/* Don't do anything if we are a network-client */
if (_networking && !_network_server) return;
/* Don't do anything if we are a network-client, or the AI has been disabled */
if (_networking && (!_network_server || !_patches.ai_in_multiplayer)) return;
/* New tick */
_ai.tick++;