diff options
-rw-r--r-- | src/console_cmds.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index 3f23b7c71..8b9f962b3 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -862,6 +862,11 @@ DEF_CONSOLE_CMD(ConStartAI) return true; } + if (_game_mode != GM_NORMAL) { + IConsoleWarning("AIs can only be managed in a game."); + return true; + } + if (ActiveCompanyCount() == MAX_COMPANIES) { IConsoleWarning("Can't start a new AI (no more free slots)."); return true; @@ -916,6 +921,11 @@ DEF_CONSOLE_CMD(ConStopAI) return true; } + if (_game_mode != GM_NORMAL) { + IConsoleWarning("AIs can only be managed in a game."); + return true; + } + if (_networking && !_network_server) { IConsoleWarning("Only the server can stop an AI."); return true; |