mirror of
https://github.com/ProjectSWGCore/NGECore2.git
synced 2026-07-30 00:15:57 -04:00
Added house radials and fixed a lot calculation mistake
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user