# HG changeset patch # User rubidium # Date 1194103286 0 # Node ID fc30c847970bec9cc0e8d941969ff309a7a0fa1f # Parent 1dbc648c7c6462857aca34bff1d6d267298b071f (svn r11371) -Fix [FS#1396]: the industry protection only kicked in when it should not kick in. diff -r 1dbc648c7c64 -r fc30c847970b src/industry_cmd.cpp --- a/src/industry_cmd.cpp Sat Nov 03 06:20:25 2007 +0000 +++ b/src/industry_cmd.cpp Sat Nov 03 15:21:26 2007 +0000 @@ -1841,7 +1841,7 @@ /* oil wells (or the industries with that flag set) are always allowed to closedown */ if (indspec->behaviour & INDUSTRYBEH_DONT_INCR_PROD && _opt.landscape == LT_TEMPERATE) return false; - return (indspec->behaviour & INDUSTRYBEH_CANCLOSE_LASTINSTANCE && GetIndustryTypeCount(type) <= 1); + return (indspec->behaviour & INDUSTRYBEH_CANCLOSE_LASTINSTANCE) == 0 && GetIndustryTypeCount(type) <= 1; } /** Change industry production or do closure