From f548a1b3b3c054957b421e88e2122f6f455bf9fc Mon Sep 17 00:00:00 2001 From: yexo Date: Fri, 28 Aug 2009 15:23:11 +0000 Subject: (svn r17298) -Fix [FS#3153]: reloading an AI started a new AI in the first available company slot causing other AIs to be started --- src/console_cmds.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/console_cmds.cpp') diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 0814b600c..5f528c374 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -1044,7 +1044,7 @@ DEF_CONSOLE_CMD(ConStartAI) } /* Start a new AI company */ - DoCommandP(0, 1, 0, CMD_COMPANY_CTRL); + DoCommandP(0, 1, INVALID_COMPANY, CMD_COMPANY_CTRL); return true; } @@ -1080,7 +1080,7 @@ DEF_CONSOLE_CMD(ConReloadAI) /* First kill the company of the AI, then start a new one. This should start the current AI again */ DoCommandP(0, 2, company_id, CMD_COMPANY_CTRL); - DoCommandP(0, 1, 0, CMD_COMPANY_CTRL); + DoCommandP(0, 1, company_id, CMD_COMPANY_CTRL); IConsolePrint(CC_DEFAULT, "AI reloaded."); return true; -- cgit v1.2.3-54-g00ecf