From c1f66fc817b177db8a17f9e8abcb8586feed2cd1 Mon Sep 17 00:00:00 2001 From: KHobbits Date: Thu, 28 Feb 2013 12:52:22 +0000 Subject: [Fix] Charging players at wrong point in /spawn --- EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'EssentialsSpawn') diff --git a/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java b/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java index 6335d6c69..31882cc4a 100644 --- a/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java +++ b/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java @@ -4,6 +4,7 @@ import static com.earth2me.essentials.I18n._; import com.earth2me.essentials.Trade; import com.earth2me.essentials.User; import com.earth2me.essentials.commands.EssentialsCommand; +import com.earth2me.essentials.commands.NoChargeException; import com.earth2me.essentials.commands.NotEnoughArgumentsException; import org.bukkit.Location; import org.bukkit.Server; @@ -26,7 +27,7 @@ public class Commandspawn extends EssentialsCommand if (args.length > 0 && user.isAuthorized("essentials.spawn.others")) { final User otherUser = getPlayer(server, args, 0); - respawn(otherUser, null); + respawn(otherUser, charge); if (!otherUser.equals(user)) { otherUser.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn")); @@ -35,8 +36,9 @@ public class Commandspawn extends EssentialsCommand } else { - respawn(user, null); + respawn(user, charge); } + throw new NoChargeException(); } @Override -- cgit v1.2.3