diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp --- a/src/industry_cmd.cpp +++ b/src/industry_cmd.cpp @@ -1648,7 +1648,7 @@ static void ExtChangeIndustryProduction( 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; }