From ef67e591452175ab48c760f14ab05a1bfd00082f Mon Sep 17 00:00:00 2001 From: yexo Date: Fri, 20 Feb 2009 00:02:25 +0000 Subject: [PATCH] (svn r15528) -Fix (r15525): Check should be the other way around (thanks SmatZ). --- src/saveload/ai_sl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/saveload/ai_sl.cpp b/src/saveload/ai_sl.cpp index 7899c6b0bb..b5ee5da64f 100644 --- a/src/saveload/ai_sl.cpp +++ b/src/saveload/ai_sl.cpp @@ -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; }