Hopefully fix a couple of economy integration problems

This commit is contained in:
Brettflan 2011-11-23 00:11:30 -06:00
parent 047a03af44
commit 101aa8cabe
2 changed files with 6 additions and 3 deletions

View File

@ -92,7 +92,7 @@ public class Faction extends Entity implements EconomyParticipator
if ( ! Econ.getMethod().createAccount(aid))
{
P.p.log(Level.SEVERE, "Error creating faction bank account through Register: "+aid);
return null;
// return null;
}
MethodAccount acc = Econ.getMethod().getAccount(aid);
acc.set(0);

View File

@ -255,8 +255,11 @@ public class Econ
for (Faction faction : Factions.i.get())
{
faction.getAccount().add(faction.money);
faction.money = 0;
if (faction.money > 0)
{
faction.getAccount().add(faction.money);
faction.money = 0;
}
}
}