diff options
author | yexo <yexo@openttd.org> | 2009-12-14 22:17:15 +0000 |
---|---|---|
committer | yexo <yexo@openttd.org> | 2009-12-14 22:17:15 +0000 |
commit | 65642c5878b4f3c99910e59a33cb62b1f8fa1dc4 (patch) | |
tree | 56ca38eae1ae85dfb0f8dd554fb006c3588d9b68 /bin | |
parent | b7263147c1fee884782df34d1cd29b350d53f516 (diff) | |
download | openttd-65642c5878b4f3c99910e59a33cb62b1f8fa1dc4.tar.xz |
(svn r18504) -Remove [NoAI]: AIVehicle::SkipToVehicleOrder as it was a duplicate or AIOrder.SkipToOrder
Diffstat (limited to 'bin')
-rw-r--r-- | bin/ai/compat_0.7.nut | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/ai/compat_0.7.nut b/bin/ai/compat_0.7.nut index 18f5a2a3a..0cd8fe8d2 100644 --- a/bin/ai/compat_0.7.nut +++ b/bin/ai/compat_0.7.nut @@ -86,3 +86,8 @@ AIRail.RemoveRailStationTileRect <- function(tile, tile2) { return AIRail.RemoveRailStationTileRectangle(tile, tile2, false); } + +AIVehicle.SkipToVehicleOrder <- function(vehicle_id, order_position) +{ + return AIOrder.SkipToOrder(vehicle_id, order_position); +} |