diff options
-rw-r--r-- | src/industry_cmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp index 21c08ee1a..188a701a5 100644 --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1648,7 +1648,7 @@ static void ExtChangeIndustryProduction(Industry *i) new_prod = clamp(new_prod, 1, 255); /* Do not stop closing the industry when it has the lowest possible production rate */ - if (new_prod == old_prod && && old_prod > 1)) { + if (new_prod == old_prod && old_prod > 1) { closeit = false; continue; } |