# HG changeset patch # User truelight # Date 1104227755 0 # Node ID e1c4b6f5742e191b2a2820207a72a8fc6fd9e4c6 # Parent 633faa72f0943ea303ce35f309033abe4b84cc00 (svn r1287) -Fix: reversed 1285, because it is not the solution. This also means that getting a lot of money with shares is back... :( diff -r 633faa72f094 -r e1c4b6f5742e economy.c --- a/economy.c Tue Dec 28 09:31:38 2004 +0000 +++ b/economy.c Tue Dec 28 09:55:55 2004 +0000 @@ -105,8 +105,8 @@ } } - 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; }