diff options
author | smatz <smatz@openttd.org> | 2011-02-04 14:11:14 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2011-02-04 14:11:14 +0000 |
commit | 3057a26fd5e2cffe9afc6ed5034dcd2c61fb2c6e (patch) | |
tree | 48d267f1a760881a5ba0f98aee6dc8138b811d9e /bin/ai | |
parent | 732a0d069ad45cc65da7ba0deb2bc081662de146 (diff) | |
download | openttd-3057a26fd5e2cffe9afc6ed5034dcd2c61fb2c6e.tar.xz |
(svn r21953) -Remove [FS#4456]: the non-uniform stations setting. Support for uniform stations has been broken for over a year
Diffstat (limited to 'bin/ai')
-rw-r--r-- | bin/ai/compat_0.7.nut | 2 | ||||
-rw-r--r-- | bin/ai/compat_1.0.nut | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/bin/ai/compat_0.7.nut b/bin/ai/compat_0.7.nut index ea1c01db1..75669eaf6 100644 --- a/bin/ai/compat_0.7.nut +++ b/bin/ai/compat_0.7.nut @@ -319,3 +319,5 @@ AIIndustry.IsCargoAccepted <- function(industry_id, cargo_id) AIAbstractList <- AIList; AIList.ChangeItem <- AIList.SetValue; + +AIRail.ERR_NONUNIFORM_STATIONS_DISABLED <- 0xFFFF; diff --git a/bin/ai/compat_1.0.nut b/bin/ai/compat_1.0.nut index 9765a3b97..92eca47d8 100644 --- a/bin/ai/compat_1.0.nut +++ b/bin/ai/compat_1.0.nut @@ -70,3 +70,5 @@ AIIndustry.IsCargoAccepted <- function(industry_id, cargo_id) AIAbstractList <- AIList; AIList.ChangeItem <- AIList.SetValue; + +AIRail.ERR_NONUNIFORM_STATIONS_DISABLED <- 0xFFFF; |