diff options
author | celestar <celestar@openttd.org> | 2006-03-31 19:10:54 +0000 |
---|---|---|
committer | celestar <celestar@openttd.org> | 2006-03-31 19:10:54 +0000 |
commit | 446493149c637ea2517be5c17f86047911130489 (patch) | |
tree | b1afcd4a3ffa7895ccd33c4d034fb543b8d4765f /ai | |
parent | 1f88ea4ec64f7dc8153dff3a8ca0ce20e7789a68 (diff) | |
download | openttd-446493149c637ea2517be5c17f86047911130489.tar.xz |
(svn r4215) -Codechange: Renamed *RoadStation* functions to *RoadStop* and moved them to station_map.h to keep consistency
Diffstat (limited to 'ai')
-rw-r--r-- | ai/trolly/trolly.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ai/trolly/trolly.c b/ai/trolly/trolly.c index 006e04850..8c466c218 100644 --- a/ai/trolly/trolly.c +++ b/ai/trolly/trolly.c @@ -617,7 +617,7 @@ static void AiNew_State_FindStation(Player *p) if (AiNew_CheckVehicleStation(p, st)) { // We did found a station that was good enough! new_tile = st->xy; - direction = GetRoadStationDir(st->xy); + direction = GetRoadStopDir(st->xy); break; } } |