summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2011-10-27 20:28:18 +0000
committeryexo <yexo@openttd.org>2011-10-27 20:28:18 +0000
commit481b1191ef1c032309e7f59eaf6f6e0017d8264b (patch)
tree2f633165142a98e8a6d6e41b75bd4b5f88737069
parenta9a095c4b0e87661a2fad1d05a9c40a0ed950050 (diff)
downloadopenttd-481b1191ef1c032309e7f59eaf6f6e0017d8264b.tar.xz
(svn r23059) -Fix [FS#4794]: if a newgrf overrides a default house the minimum start year for that house was set to 1930
-rw-r--r--src/newgrf.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/newgrf.cpp b/src/newgrf.cpp
index 36802cfb4..8e8d4de3a 100644
--- a/src/newgrf.cpp
+++ b/src/newgrf.cpp
@@ -2114,13 +2114,6 @@ static ChangeInfoResult TownHouseChangeInfo(uint hid, int numinfo, int prop, Byt
housespec->cargo_acceptance[2] = 0;
}
- /**
- * New houses do not (currently) expect to have a default start
- * date before 1930, as this breaks the build date stuff.
- * @see FinaliseHouseArray() for more details.
- */
- if (housespec->min_year < 1930) housespec->min_year = 1930;
-
_loaded_newgrf_features.has_newhouses = true;
break;
}