diff options
author | frosch <frosch@openttd.org> | 2010-09-12 18:28:51 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2010-09-12 18:28:51 +0000 |
commit | b24904636469dfaed22f6aebd12c1cf4d040a6ef (patch) | |
tree | d3814263ffaaf47dbd903d080e2055df31ce8f64 /src | |
parent | b4c86e69a3c70e30ece2b1b48f974f752bb41571 (diff) | |
download | openttd-b24904636469dfaed22f6aebd12c1cf4d040a6ef.tar.xz |
(svn r20790) -Fix (r0)[FS#4118]: Remove a check which is wrong for NewGrf houses and serves no use for original houses.
Diffstat (limited to 'src')
-rw-r--r-- | src/town_cmd.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp index d360f1044..91dbb9d68 100644 --- a/src/town_cmd.cpp +++ b/src/town_cmd.cpp @@ -402,9 +402,6 @@ static void MakeSingleHouseBigger(TileIndex tile) { assert(IsTileType(tile, MP_HOUSE)); - /* means it is completed, get out. */ - if (LiftHasDestination(tile)) return; - /* progress in construction stages */ IncHouseConstructionTick(tile); if (GetHouseConstructionTick(tile) != 0) return; |