diff options
author | peter1138 <peter1138@openttd.org> | 2006-10-15 19:01:40 +0000 |
---|---|---|
committer | peter1138 <peter1138@openttd.org> | 2006-10-15 19:01:40 +0000 |
commit | 4c1423fc381cafd01f443d77dc70efcde685132c (patch) | |
tree | 1496802ebe2b30e2f08badc73313bcfc93b88de0 /table | |
parent | b2110cbaedbbbbb18769e4594f416dfef1c733fd (diff) | |
download | openttd-4c1423fc381cafd01f443d77dc70efcde685132c.tar.xz |
(svn r6781) - Fix (r5926): Some house introduction dates were incorrectly adjusted in the move to 32bit dates.
Diffstat (limited to 'table')
-rw-r--r-- | table/town_land.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/table/town_land.h b/table/town_land.h index da158304c..0a634aa44 100644 --- a/table/town_land.h +++ b/table/town_land.h @@ -2048,8 +2048,8 @@ static const HousetypeYear _housetype_years[] = { { 0, MAX_YEAR }, { 0, 1951 }, { 0, 1952 }, - { 1941, MAX_YEAR }, - { 1945, MAX_YEAR }, + { 1931, MAX_YEAR }, + { 1935, MAX_YEAR }, { 1963, MAX_YEAR }, { 0, 1955 }, { 1973, MAX_YEAR }, @@ -2058,7 +2058,7 @@ static const HousetypeYear _housetype_years[] = { { 1958, MAX_YEAR }, { 1958, MAX_YEAR }, { 1958, MAX_YEAR }, - { 1950, MAX_YEAR }, + { 2000, MAX_YEAR }, { 0, 1960 }, { 0, 1960 }, { 1945, MAX_YEAR }, |