From 41201f488c6eb3d4862f49f419ccd9915c46c162 Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 28 Dec 2004 09:55:55 +0000 Subject: (svn r1287) -Fix: reversed 1285, because it is not the solution. This also means that getting a lot of money with shares is back... :( --- economy.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'economy.c') diff --git a/economy.c b/economy.c index d5f1661c3..87bfcb551 100644 --- a/economy.c +++ b/economy.c @@ -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; } -- cgit v1.2.3-54-g00ecf