diff options
author | frosch <frosch@openttd.org> | 2014-03-17 20:05:38 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2014-03-17 20:05:38 +0000 |
commit | 6baa58a7d864a365d13f7e6f172e7296519249fe (patch) | |
tree | be85fc269e81e0086b16a8e5973f2bc6eb121f62 /bin/game | |
parent | db96a109ff29776e00c6860acdef2d61b81a1f0b (diff) | |
download | openttd-6baa58a7d864a365d13f7e6f172e7296519249fe.tar.xz |
(svn r26407) -Fix: __ln__ never read the script compatibility files.
Diffstat (limited to 'bin/game')
-rw-r--r-- | bin/game/compat_1.2.nut | 2 | ||||
-rw-r--r-- | bin/game/compat_1.3.nut | 2 | ||||
-rw-r--r-- | bin/game/compat_1.4.nut | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/bin/game/compat_1.2.nut b/bin/game/compat_1.2.nut index 6126809c8..37ff5907d 100644 --- a/bin/game/compat_1.2.nut +++ b/bin/game/compat_1.2.nut @@ -7,7 +7,7 @@ * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. */ -GSLog.Info("1.2 API compatability in effect."); +GSLog.Info("1.2 API compatibility in effect."); GSTown._SetGrowthRate <- GSTown.SetGrowthRate; GSTown.SetGrowthRate <- function(town_id, days_between_town_growth) diff --git a/bin/game/compat_1.3.nut b/bin/game/compat_1.3.nut index d58a34685..4116addbb 100644 --- a/bin/game/compat_1.3.nut +++ b/bin/game/compat_1.3.nut @@ -7,7 +7,7 @@ * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. */ -GSLog.Info("1.3 API compatability in effect."); +GSLog.Info("1.3 API compatibility in effect."); GSTown._SetGrowthRate <- GSTown.SetGrowthRate; GSTown.SetGrowthRate <- function(town_id, days_between_town_growth) diff --git a/bin/game/compat_1.4.nut b/bin/game/compat_1.4.nut index b9c5e2013..6ae5f5dc1 100644 --- a/bin/game/compat_1.4.nut +++ b/bin/game/compat_1.4.nut @@ -7,4 +7,4 @@ * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>. */ -GSLog.Info("1.4 API compatability in effect."); +GSLog.Info("1.4 API compatibility in effect."); |