summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/Teleport.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/Teleport.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/Teleport.java11
1 files changed, 9 insertions, 2 deletions
diff --git a/Essentials/src/com/earth2me/essentials/Teleport.java b/Essentials/src/com/earth2me/essentials/Teleport.java
index 225397b37..4812296bd 100644
--- a/Essentials/src/com/earth2me/essentials/Teleport.java
+++ b/Essentials/src/com/earth2me/essentials/Teleport.java
@@ -173,10 +173,17 @@ public class Teleport implements net.ess3.api.ITeleport
double delay = ess.getSettings().getTeleportDelay();
Trade cashCharge = chargeFor;
- if (chargeFor != null && !chargeFor.getCommandCost(teleportOwner).equals(BigDecimal.ZERO))
+
+ if (chargeFor != null)
{
chargeFor.isAffordableFor(teleportOwner);
- cashCharge = new Trade(chargeFor.getCommandCost(teleportOwner), ess);
+
+ //This code is to make sure that commandcosts are checked in the initial world, and not in the resulting world.
+ if (!chargeFor.getCommandCost(teleportOwner).equals(BigDecimal.ZERO))
+ {
+ //By converting a command cost to a regular cost, the command cost permission isn't checked when executing the charge after teleport.
+ cashCharge = new Trade(chargeFor.getCommandCost(teleportOwner), ess);
+ }
}
cooldown(true);