summaryrefslogtreecommitdiff
path: root/bin/ai/compat_1.0.nut
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-08-19 15:37:28 +0000
committeryexo <yexo@openttd.org>2010-08-19 15:37:28 +0000
commitdc303e550bec650220038b727e4915f2e502a5a4 (patch)
tree3e882c182bd41904d817cef6132358ca370a96ec /bin/ai/compat_1.0.nut
parent6c7384cabd9ffe684697f98a65a32871500284f8 (diff)
downloadopenttd-dc303e550bec650220038b727e4915f2e502a5a4.tar.xz
(svn r20563) -Change: [NoAI] rename AIAbstractList to AIList
Diffstat (limited to 'bin/ai/compat_1.0.nut')
-rw-r--r--bin/ai/compat_1.0.nut3
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/ai/compat_1.0.nut b/bin/ai/compat_1.0.nut
index 267b85871..5cda3ad74 100644
--- a/bin/ai/compat_1.0.nut
+++ b/bin/ai/compat_1.0.nut
@@ -25,7 +25,6 @@ AIRoad.BuildDriveThroughRoadStation <- function(tile, front, road_veh_type, stat
return AIRoad._BuildDriveThroughRoadStation(tile, front, road_veh_type, station_id);
}
-AIAbstractList.HasNext <-
AIBridgeList.HasNext <-
AIBridgeList_Length.HasNext <-
AICargoList.HasNext <-
@@ -67,3 +66,5 @@ AIIndustry.IsCargoAccepted <- function(industry_id, cargo_id)
{
return AIIndustry._IsCargoAccepted(industry_id, cargo_id) != AIIndustry.CAS_NOT_ACCEPTED;
}
+
+AIAbstractList <- AIList;