1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-19 02:12:37 +01:00

(svn r25924) -Fix: [Script] Documentation for ScriptTown::GetGrowthRate.

This commit is contained in:
frosch
2013-10-28 11:09:02 +00:00
parent 28f6009509
commit a249db1374
2 changed files with 2 additions and 2 deletions

View File

@@ -166,7 +166,7 @@
/* static */ int32 ScriptTown::GetGrowthRate(TownID town_id)
{
if (!IsValidTown(town_id)) return false;
if (!IsValidTown(town_id)) return -1;
const Town *t = ::Town::Get(town_id);