public boolean hasUnder(double amount) {
return amount > this.getBalance();
}
private void math(double amount, double balance, double ending) {
HoldingsUpdate Event = new HoldingsUpdate(this.name, balance, ending, amount);
iConomy.Server.getPluginManager().callEvent(Event);
if(!Event.isCancelled())
setBalance(ending);
}