diff options
author | glx <glx@openttd.org> | 2019-02-04 18:06:19 +0100 |
---|---|---|
committer | glx22 <glx22@users.noreply.github.com> | 2019-02-04 21:08:36 +0100 |
commit | 8e7fe3973fc03561c828594ce3293c1ab3c15481 (patch) | |
tree | 14aece330e30ec3188f1f77f0ba0b138a8a86117 /src/ai | |
parent | 33e3f4916173b4129cbbe60f94dae659a70edb83 (diff) | |
download | openttd-8e7fe3973fc03561c828594ce3293c1ab3c15481.tar.xz |
Add: CompanyCtrlAction enum for CMD_COMPANY_CTRL actions
Diffstat (limited to 'src/ai')
-rw-r--r-- | src/ai/ai_gui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ai/ai_gui.cpp b/src/ai/ai_gui.cpp index 69476856c..dbdd77245 100644 --- a/src/ai/ai_gui.cpp +++ b/src/ai/ai_gui.cpp @@ -1282,8 +1282,8 @@ struct AIDebugWindow : public Window { case WID_AID_RELOAD_TOGGLE: if (ai_debug_company == OWNER_DEITY) break; /* 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, CRR_MANUAL, CMD_COMPANY_CTRL); - DoCommandP(0, 1 | ai_debug_company << 16, 0, CMD_COMPANY_CTRL); + DoCommandP(0, CCA_DELETE | ai_debug_company << 16, CRR_MANUAL, CMD_COMPANY_CTRL); + DoCommandP(0, CCA_NEW_AI | ai_debug_company << 16, 0, CMD_COMPANY_CTRL); break; case WID_AID_SETTINGS: |