summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_object.hpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-09-11 17:18:06 +0000
committeryexo <yexo@openttd.org>2009-09-11 17:18:06 +0000
commit8ef7b80719a4c3837b24157a0c65222011f1898d (patch)
treee20ff2578364bb2c7b1e403cc74e7e548cbdf8e3 /src/ai/api/ai_object.hpp
parentc9a25c88fa522fa778c2de827d98cce46700d1f6 (diff)
downloadopenttd-8ef7b80719a4c3837b24157a0c65222011f1898d.tar.xz
(svn r17500) -Fix (r16502): The wrong value was restored to SetAllowDoCommand possible resulting in an AI that wasn't allowed to do any actions
Diffstat (limited to 'src/ai/api/ai_object.hpp')
-rw-r--r--src/ai/api/ai_object.hpp11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/ai/api/ai_object.hpp b/src/ai/api/ai_object.hpp
index e60fc35c5..21404d7e3 100644
--- a/src/ai/api/ai_object.hpp
+++ b/src/ai/api/ai_object.hpp
@@ -140,8 +140,15 @@ protected:
static GroupID GetNewGroupID();
/**
- * Get the latest stored allow_do_command.
- * If this is false, you are not allowed to do any DoCommands.
+ * Can we suspend the AI at this moment?
+ */
+ static bool CanSuspend();
+
+ /**
+ * Get the internal value of allow_do_command. This can differ
+ * from CanSuspend() if the reason we are not allowed
+ * to execute a DoCommand is in squirrel and not the API.
+ * In that case use this function to restore the previous value.
*/
static bool GetAllowDoCommand();