We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b5718f commit 3538728Copy full SHA for 3538728
Essentials/src/com/earth2me/essentials/TimedTeleport.java
@@ -110,7 +110,10 @@ public void run()
110
{
111
cancelTimer(false);
112
teleportUser.sendMessage(_("teleportationCommencing"));
113
- timer_chargeFor.isAffordableFor(teleportOwner);
+ if (timer_chargeFor != null)
114
+ {
115
+ timer_chargeFor.isAffordableFor(teleportOwner);
116
+ }
117
if (timer_respawn)
118
119
teleport.respawnNow(teleportUser, timer_cause);
0 commit comments