diff options
author | rubidium <rubidium@openttd.org> | 2007-06-11 14:23:04 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-06-11 14:23:04 +0000 |
commit | cc4d18ecc440aea0ecb9f754fcc90803c9050d2b (patch) | |
tree | 280395be4dfbadd6c99f6d11e10796c05b05ea17 /src/table | |
parent | 3e326085fa69da20e0a81182cbea4466016eb566 (diff) | |
download | openttd-cc4d18ecc440aea0ecb9f754fcc90803c9050d2b.tar.xz |
(svn r10098) -Codechange: bilbo cared about the performance of the AI with respect to the airport placement, so he rewrote the aircraft handling of the AI; now it can actually make lots of money again :)
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/ai_rail.h | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/table/ai_rail.h b/src/table/ai_rail.h index 2b9602abd..7fe518968 100644 --- a/src/table/ai_rail.h +++ b/src/table/ai_rail.h @@ -567,8 +567,32 @@ static const AiDefaultBlockData _airportdata_ai_1[] = { {1, 0, {0, 0}} }; +static const AiDefaultBlockData _airportdata_ai_3[] = { + MKAIR(3, 0, 0), + {1, 0, {0, 0}}, +}; + +static const AiDefaultBlockData _airportdata_ai_4[] = { + MKAIR(4, 0, 0), + {1, 0, {0, 0}}, +}; + +static const AiDefaultBlockData _airportdata_ai_5[] = { + MKAIR(5, 0, 0), + {1, 0, {0, 0}}, +}; + +static const AiDefaultBlockData _airportdata_ai_7[] = { + MKAIR(7, 0, 0), + {1, 0, {0, 0}} +}; + static const AiDefaultBlockData * const _airport_default_block_data[] = { + _airportdata_ai_7, // intercontinental airport + _airportdata_ai_4, // international airport + _airportdata_ai_3, // metropolitan airport _airportdata_ai_0, // city airport + _airportdata_ai_5, // commuter airport _airportdata_ai_1, // country airport NULL }; |