summaryrefslogtreecommitdiff
path: root/src/industry_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-11-03 15:21:26 +0000
committerrubidium <rubidium@openttd.org>2007-11-03 15:21:26 +0000
commita416f540fa37cc55894170c5685a6736a4b7900a (patch)
tree04c5f952206e7c94c724ea293306d4c12373771b /src/industry_cmd.cpp
parentc393a2802824754d492781d451337e693d28604b (diff)
downloadopenttd-a416f540fa37cc55894170c5685a6736a4b7900a.tar.xz
(svn r11371) -Fix [FS#1396]: the industry protection only kicked in when it should not kick in.
Diffstat (limited to 'src/industry_cmd.cpp')
-rw-r--r--src/industry_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index a7067702b..f3bf356aa 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -1841,7 +1841,7 @@ static bool CheckIndustryCloseDownProtection(IndustryType type)
/* 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