From 9dfb582f66d6a3f7afe45b5b3ac8c51bbc7522c7 Mon Sep 17 00:00:00 2001 From: snowleo Date: Thu, 12 Apr 2012 23:57:19 +0300 Subject: 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(); } } -- cgit v1.2.3