Refactoring: New Charge class

user.canAfford(String), user.canAfford(EssentialsCommand), user.charge(String), user.charge(EssentialsCommand) have been removed.
Teleport class has been changed to use the Charge class.
This also fixes some bugs, like the one with warp signs.

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1512 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
snowleo 2011-05-22 18:53:23 +00:00
parent 011fc09b4f
commit 5ae48481bd
28 changed files with 208 additions and 117 deletions

View file

@ -1,5 +1,6 @@
package com.earth2me.essentials.commands;
import com.earth2me.essentials.Charge;
import java.util.Calendar;
import java.util.HashMap;
import java.util.List;
@ -109,9 +110,10 @@ public class Commandkit extends EssentialsCommand
items = (List<String>)kit;
}
Charge charge = new Charge("kit-" + kitName);
try
{
user.canAfford("kit-" + kitName);
charge.isAffordableFor(user);
}
catch (Exception ex)
{
@ -139,8 +141,8 @@ public class Commandkit extends EssentialsCommand
}
try
{
user.charge(this);
user.charge("kit-" + kitName);
charge(user);
charge.charge(user);
}
catch (Exception ex)
{