Added house radials and fixed a lot calculation mistake

This commit is contained in:
Seefo
2014-04-09 21:23:12 -04:00
parent 68d5acb687
commit 38283f3351
5 changed files with 38 additions and 4 deletions
@@ -838,7 +838,7 @@ public class PlayerObject extends IntangibleObject {
public boolean deductLots(int amount)
{
if(this.lotsRemaining - amount > 0)
if(this.lotsRemaining - amount >= 0)
{
this.lotsRemaining -= amount;
return true;