1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-09-01 19:09:09 +00:00

(svn r15528) -Fix (r15525): Check should be the other way around (thanks SmatZ).

This commit is contained in:
yexo
2009-02-20 00:02:25 +00:00
parent a54061f840
commit ef67e59145

View File

@@ -58,7 +58,7 @@ static void Load_AIPL()
_ai_saveload_version = -1;
SlObject(NULL, _ai_company);
if (!_networking || _network_server) {
if (_networking && !_network_server) {
AIInstance::LoadEmpty();
continue;
}