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

that getting a lot of money with shares is back... :(
This commit is contained in:
truelight 2004-12-28 09:55:55 +00:00
parent c531739602
commit 41201f488c
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}