From 16cd779efe9afff09afe7ec5a930b50fa8365d3b Mon Sep 17 00:00:00 2001 From: truelight Date: Tue, 28 Dec 2004 09:55:55 +0000 Subject: [PATCH] (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(-) diff --git a/economy.c b/economy.c index d5f1661c38..87bfcb5513 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; }