(svn r1287) -Fix: reversed 1285, because it is not the solution. This also means

that getting a lot of money with shares is back... :(
pull/155/head
truelight 20 years ago
parent 0f856ad408
commit 16cd779efe

@ -105,8 +105,8 @@ int64 CalculateCompanyValue(Player *p) {
}
}
if (p->player_money > p->current_loan)
value += p->money64 - p->current_loan; // add real money value
if (p->player_money > 0)
value += p->money64; // add real money value
return value;
}

Loading…
Cancel
Save