Fix double charge in /jump

This commit is contained in:
snowleo 2012-04-12 23:57:19 +03:00
parent bbd2c53dd8
commit 2d319fe5aa

View file

@ -37,5 +37,6 @@ public class Commandjump extends EssentialsCommand
final Trade charge = new Trade(this.getName(), ess);
charge.isAffordableFor(user);
user.getTeleport().teleport(loc, charge, TeleportCause.COMMAND);
throw new NoChargeException();
}
}