diff --git a/Essentials/src/com/earth2me/essentials/Teleport.java b/Essentials/src/com/earth2me/essentials/Teleport.java index f04a2d8c9..37efb9aea 100644 --- a/Essentials/src/com/earth2me/essentials/Teleport.java +++ b/Essentials/src/com/earth2me/essentials/Teleport.java @@ -174,12 +174,12 @@ public class Teleport implements Runnable public void teleport(Location loc, String name) throws Exception { - teleport(new Target(loc), chargeFor); + teleport(new Target(loc), name); } public void teleport(Entity entity, String name) throws Exception { - teleport(new Target(entity), chargeFor); + teleport(new Target(entity), name); } private void teleport(Target target, String chargeFor) throws Exception