diff options
author | truebrain <truebrain@openttd.org> | 2009-01-13 12:51:46 +0000 |
---|---|---|
committer | truebrain <truebrain@openttd.org> | 2009-01-13 12:51:46 +0000 |
commit | e6543c277600d28164c536ea8ef96dea59b54921 (patch) | |
tree | 803410f33b352d4efe89316e13bdeba819708692 /src/ai/ai_scanner.cpp | |
parent | 04ea0b9316be38eb264f8d04b804f6bebba12a9b (diff) | |
download | openttd-e6543c277600d28164c536ea8ef96dea59b54921.tar.xz |
(svn r15055) -Add [NoAI]: add the AICONFIG_RANDOM and AICONFIG_BOOLEAN consts (Yexo)
Diffstat (limited to 'src/ai/ai_scanner.cpp')
-rw-r--r-- | src/ai/ai_scanner.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/ai/ai_scanner.cpp b/src/ai/ai_scanner.cpp index 6bcf883e7..de2715c9f 100644 --- a/src/ai/ai_scanner.cpp +++ b/src/ai/ai_scanner.cpp @@ -160,6 +160,8 @@ AIScanner::AIScanner() this->engine->AddClassBegin("AILibrary"); this->engine->AddClassEnd(); this->engine->AddMethod("RegisterLibrary", &AILibrary::Constructor, 2, "tx"); + this->engine->AddConst("AICONFIG_RANDOM", AICONFIG_RANDOM); + this->engine->AddConst("AICONFIG_BOOLEAN", AICONFIG_BOOLEAN); /* Mark this class as global pointer */ this->engine->SetGlobalPointer(this); |