summaryrefslogtreecommitdiff
path: root/bin/ai/compat_0.7.nut
diff options
context:
space:
mode:
authorterkhen <terkhen@openttd.org>2010-02-24 21:55:03 +0000
committerterkhen <terkhen@openttd.org>2010-02-24 21:55:03 +0000
commita4a66ec1aa2a7772ed174b8dcc1905e9bc5dd02d (patch)
treef51b3f2e3540e485a807591436e56978483539db /bin/ai/compat_0.7.nut
parentaba24e44cf76479a33e78cc0a8d6d5279aeef00b (diff)
downloadopenttd-a4a66ec1aa2a7772ed174b8dcc1905e9bc5dd02d.tar.xz
(svn r19231) -Feature: Allow overbuilding of road stops.
Diffstat (limited to 'bin/ai/compat_0.7.nut')
-rw-r--r--bin/ai/compat_0.7.nut16
1 files changed, 16 insertions, 0 deletions
diff --git a/bin/ai/compat_0.7.nut b/bin/ai/compat_0.7.nut
index 3e4b4fa68..db56fdaee 100644
--- a/bin/ai/compat_0.7.nut
+++ b/bin/ai/compat_0.7.nut
@@ -258,3 +258,19 @@ class AIWaypointList extends _AIWaypointList {
::_AIWaypointList.constructor(AIWaypoint.WAYPOINT_RAIL);
}
}
+
+AIRoad._BuildRoadStation <- AIRoad.BuildRoadStation;
+AIRoad.BuildRoadStation <- function(tile, front, road_veh_type, station_id)
+{
+ if (AIRoad.IsRoadStationTile(tile)) return false;
+
+ return AIRoad._BuildRoadStation(tile, front, road_veh_type, station_id);
+}
+
+AIRoad._BuildDriveThroughRoadStation <- AIRoad.BuildDriveThroughRoadStation;
+AIRoad.BuildDriveThroughRoadStation <- function(tile, front, road_veh_type, station_id)
+{
+ if (AIRoad.IsRoadStationTile(tile)) return false;
+
+ return AIRoad._BuildDriveThroughRoadStation(tile, front, road_veh_type, station_id);
+}