summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_controller.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_controller.cpp')
-rw-r--r--src/ai/api/ai_controller.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/ai/api/ai_controller.cpp b/src/ai/api/ai_controller.cpp
index 24510b7e7..7553f5944 100644
--- a/src/ai/api/ai_controller.cpp
+++ b/src/ai/api/ai_controller.cpp
@@ -24,8 +24,7 @@
/* static */ void AIController::Sleep(int ticks)
{
if (!AIObject::GetAllowDoCommand()) {
- AILog::Error("You are not allowed to call Sleep in your constructor, Save(), Load(), and any valuator.\n");
- return;
+ throw AI_FatalError("You are not allowed to call Sleep in your constructor, Save(), Load(), and any valuator.");
}
if (ticks <= 0) {