diff options
author | rubidium <rubidium@openttd.org> | 2011-10-15 20:42:32 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2011-10-15 20:42:32 +0000 |
commit | de27205e6c8aec594f7ae3b8205e8a1d60c24751 (patch) | |
tree | 84a180f9001812109677d95c57ee446178dada0d /src/ai | |
parent | 16e1314f58fa96915d79ca8419465ab2e5e8639e (diff) | |
download | openttd-de27205e6c8aec594f7ae3b8205e8a1d60c24751.tar.xz |
(svn r23031) -Fix [FS#4804]: for the admin "bots" there was no distinction between bankruptcy and manual removal of companies even though the API suggested that
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index debed35a2..243f96e6f 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -1027,7 +1027,7 @@ struct AIDebugWindow : public QueryStringBaseWindow { switch (widget) { case AID_WIDGET_RELOAD_TOGGLE: /* First kill the company of the AI, then start a new one. This should start the current AI again */ - DoCommandP(0, 2 | ai_debug_company << 16, 0, CMD_COMPANY_CTRL); + DoCommandP(0, 2 | ai_debug_company << 16, CRR_MANUAL, CMD_COMPANY_CTRL); DoCommandP(0, 1 | ai_debug_company << 16, 0, CMD_COMPANY_CTRL); break; |