From 878554ffab4890fab25dbc56c97ca29bb80f4fcf Mon Sep 17 00:00:00 2001 From: yexo Date: Thu, 27 Oct 2011 20:28:18 +0000 Subject: [PATCH] (svn r23059) -Fix [FS#4794]: if a newgrf overrides a default house the minimum start year for that house was set to 1930 --- src/newgrf.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/src/newgrf.cpp b/src/newgrf.cpp index 36802cfb46..8e8d4de3a2 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; }