summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_testmode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_testmode.cpp')
-rw-r--r--src/ai/api/ai_testmode.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/ai/api/ai_testmode.cpp b/src/ai/api/ai_testmode.cpp
index 484333b42..114366722 100644
--- a/src/ai/api/ai_testmode.cpp
+++ b/src/ai/api/ai_testmode.cpp
@@ -4,6 +4,9 @@
#include "ai_testmode.hpp"
#include "../../command_type.h"
+#include "../../company_base.h"
+#include "../../company_func.h"
+#include "../ai_instance.hpp"
bool AITestMode::ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs)
{
@@ -21,6 +24,12 @@ AITestMode::AITestMode()
AITestMode::~AITestMode()
{
- assert(this->GetDoCommandModeInstance() == this);
+ if (this->GetDoCommandModeInstance() != this) {
+ AIInstance *instance = Company::Get(_current_company)->ai_instance;
+ /* Ignore this error if the AI already died. */
+ if (!instance->IsDead()) {
+ throw AI_FatalError("AITestmode object was removed while it was not the latest AI*Mode object created.");
+ }
+ }
this->SetDoCommandMode(this->last_mode, this->last_instance);
}