# HG changeset patch # User planetmaker # Date 1302216027 0 # Node ID a99023ab26fce3be368e338089caad704be5da9f # Parent 29079caa99d65a3d098796db967daeec52e062f2 (svn r22300) -Fix (r22299): Missing out on a ! can have the opposite effect of what was intended diff --git a/src/newgrf.cpp b/src/newgrf.cpp --- a/src/newgrf.cpp +++ b/src/newgrf.cpp @@ -7652,6 +7652,7 @@ * 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; } }