diff options
Diffstat (limited to 'bin/game/compat_1.10.nut')
-rw-r--r-- | bin/game/compat_1.10.nut | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/game/compat_1.10.nut b/bin/game/compat_1.10.nut index 1c85766c0..92cef84c5 100644 --- a/bin/game/compat_1.10.nut +++ b/bin/game/compat_1.10.nut @@ -6,3 +6,10 @@ */ GSLog.Info("1.10 API compatibility in effect."); + +/* 1.11 adds a tile parameter. */ +GSCompany._ChangeBankBalance <- GSCompany.ChangeBankBalance; +GSCompany.ChangeBankBalance <- function(company, delta, expenses_type) +{ + return GSCompany._ChangeBankBalance(company, delta, expenses_type, GSMap.TILE_INVALID); +} |