From 4313c0a0c8d2e17518ba8e34f227682cf1d5cf13 Mon Sep 17 00:00:00 2001 From: planetmaker Date: Thu, 7 Apr 2011 22:40:27 +0000 Subject: [PATCH] (svn r22300) -Fix (r22299): Missing out on a ! can have the opposite effect of what was intended --- src/newgrf.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/newgrf.cpp b/src/newgrf.cpp index cecec6d559..b686bc9200 100644 --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -7652,6 +7652,7 @@ static void FinaliseHouseArray() * building_flags to zero here to make sure any house following * this one in the pool is properly handled as 1x1 house. */ hs->building_flags = TILE_NO_FLAG; + } else { if (hs->min_year < min_year) min_year = hs->min_year; } }