(svn r1287) -Fix: reversed 1285, because it is not the solution. This also means
authortruelight
Tue, 28 Dec 2004 09:55:55 +0000
changeset 816 e1c4b6f5742e
parent 815 633faa72f094
child 817 4f9377b7fd2b
(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
--- 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;
 }