summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_controller.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2009-02-13 00:18:56 +0000
committeryexo <yexo@openttd.org>2009-02-13 00:18:56 +0000
commit4c7106dad78c2f5af4d51813359612ca911f5768 (patch)
tree2e6d9dc620998ec8afcfbde65e2adfcc957a594f /src/ai/api/ai_controller.cpp
parent806807e16b71bc99d0d91c0bac42155bac5f33b9 (diff)
downloadopenttd-4c7106dad78c2f5af4d51813359612ca911f5768.tar.xz
(svn r15462) -Change [NoAI]: Make AIController::GetTick() and AIController::GetSetting() static functions.
-Fix (r15460): ai_controller.hpp.sq was forgotten.
Diffstat (limited to 'src/ai/api/ai_controller.cpp')
-rw-r--r--src/ai/api/ai_controller.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/api/ai_controller.cpp b/src/ai/api/ai_controller.cpp
index d11a2add5..f783bbabb 100644
--- a/src/ai/api/ai_controller.cpp
+++ b/src/ai/api/ai_controller.cpp
@@ -56,12 +56,12 @@ AIController::~AIController()
this->loaded_library.clear();
}
-uint AIController::GetTick()
+/* static */ uint AIController::GetTick()
{
- return this->ticks;
+ return ::GetCompany(_current_company)->ai_instance->GetController()->ticks;
}
-int AIController::GetSetting(const char *name)
+/* static */ int AIController::GetSetting(const char *name)
{
return AIConfig::GetConfig(_current_company)->GetSetting(name);
}