From 7a79e204aaef10b29f49d0717db9ca419d1c3e40 Mon Sep 17 00:00:00 2001 From: snowleo Date: Thu, 12 Apr 2012 23:57:19 +0300 Subject: [PATCH] Fix double charge in /jump --- Essentials/src/com/earth2me/essentials/commands/Commandjump.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandjump.java b/Essentials/src/com/earth2me/essentials/commands/Commandjump.java index 39ca305e3..ab73c6e01 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandjump.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandjump.java @@ -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(); } }