From e434323d3883096359f6fc204583d1f07e7f2129 Mon Sep 17 00:00:00 2001 From: peter1138 Date: Sun, 3 Aug 2008 18:51:13 +0000 Subject: [PATCH] (svn r13981) -Fix [FS#AmmlersStillTooLazy]: Resetting construction stage counter reset more than it should. --- src/industry_map.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/industry_map.h b/src/industry_map.h index 04be3513a9..723b4c0107 100644 --- a/src/industry_map.h +++ b/src/industry_map.h @@ -218,7 +218,8 @@ static inline void SetIndustryConstructionCounter(TileIndex tile, byte value) static inline void ResetIndustryConstructionStage(TileIndex tile) { assert(IsTileType(tile, MP_INDUSTRY)); - _m[tile].m1 = 0; + SB(_m[tile].m1, 0, 2, 0); + SB(_m[tile].m1, 7, 1, 0); } /**