[trunk warps should charge only once, and not when an exception happens

git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1344 e251c2fe-e539-e718-e476-b85c1f46cddb
This commit is contained in:
ementalo 2011-05-04 23:19:17 +00:00
parent 27dffd1533
commit cf020d235e
2 changed files with 4 additions and 4 deletions

View file

@ -87,11 +87,12 @@ public class Teleport implements Runnable
user.sendMessage("§7Teleportation commencing...");
try
{
now(teleportTarget);
if (chargeFor != null)
{
user.charge(chargeFor);
}
now(teleportTarget);
}
catch (Throwable ex)
{
@ -188,11 +189,11 @@ public class Teleport implements Runnable
cooldown(true);
if (delay <= 0 || user.isAuthorized("essentials.teleport.timer.bypass"))
{
now(target);
if (chargeFor != null)
{
user.charge(chargeFor);
}
now(target);
return;
}

View file

@ -65,6 +65,7 @@ public class Commandwarp extends EssentialsCommand
return;
}
warpUser(otherUser, args[0]);
return;
}
warpUser(user, args[0]);
}
@ -76,14 +77,12 @@ public class Commandwarp extends EssentialsCommand
{
if (user.isAuthorized("essentials.warp." + name))
{
charge(user);
user.getTeleport().warp(name, this.getName());
return;
}
user.sendMessage("§cYou do not have Permission to use that warp.");
return;
}
charge(user);
user.getTeleport().warp(name, this.getName());
}
}