diff --git a/Essentials/src/com/earth2me/essentials/TimedTeleport.java b/Essentials/src/com/earth2me/essentials/TimedTeleport.java index 1b972c17cb..e30eff9669 100644 --- a/Essentials/src/com/earth2me/essentials/TimedTeleport.java +++ b/Essentials/src/com/earth2me/essentials/TimedTeleport.java @@ -110,7 +110,10 @@ public void run() { cancelTimer(false); teleportUser.sendMessage(_("teleportationCommencing")); - timer_chargeFor.isAffordableFor(teleportOwner); + if (timer_chargeFor != null) + { + timer_chargeFor.isAffordableFor(teleportOwner); + } if (timer_respawn) { teleport.respawnNow(teleportUser, timer_cause);