diff options
Diffstat (limited to 'economy.c')
-rw-r--r-- | economy.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -142,7 +142,8 @@ int UpdateCompanyRatingAndValue(Player *p, bool update) } _score_part[owner][SCORE_VEHICLES] = num; - _score_part[owner][SCORE_MIN_PROFIT] = min_profit; + if (min_profit > 0) + _score_part[owner][SCORE_MIN_PROFIT] = min_profit; } /* Count stations */ |