(svn r11312) -Codechange: implement a overflow safe integer and use that for money and don't misuses CommandCost to have a overflow safe integer. Based on a patch by Noldo.
This commit is contained in:
@@ -95,7 +95,7 @@ Money CalculateCompanyValue(const Player* p)
|
||||
value.AddCost(-p->current_loan);
|
||||
value.AddCost(p->player_money);
|
||||
|
||||
return max(value.GetCost(), 1LL);
|
||||
return max(value.GetCost(), (Money)1);
|
||||
}
|
||||
|
||||
/** if update is set to true, the economy is updated with this score
|
||||
|
||||
Reference in New Issue
Block a user