Changeset - r816:e1be7963ed39
[Not reviewed]
master
0 1 0
truelight - 19 years ago 2004-12-28 09:55:55
truelight@openttd.org
(svn r1287) -Fix: reversed 1285, because it is not the solution. This also means
that getting a lot of money with shares is back... :(
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
economy.c
Show inline comments
 
@@ -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;
 
}
0 comments (0 inline, 0 general)