# HG changeset patch # User peter1138 # Date 1217789473 0 # Node ID 976f08497fa78c389da011120abe44ba67c3486c # Parent 8d4c9e463e5e6151465f042a32972381dbc683d6 (svn r13981) -Fix [FS#AmmlersStillTooLazy]: Resetting construction stage counter reset more than it should. diff -r 8d4c9e463e5e -r 976f08497fa7 src/industry_map.h --- a/src/industry_map.h Sun Aug 03 18:18:36 2008 +0000 +++ b/src/industry_map.h Sun Aug 03 18:51:13 2008 +0000 @@ -218,7 +218,8 @@ 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); } /**