diff --git a/Essentials/src/com/earth2me/essentials/Util.java b/Essentials/src/com/earth2me/essentials/Util.java index 2ba7f0eb7..97f051db4 100644 --- a/Essentials/src/com/earth2me/essentials/Util.java +++ b/Essentials/src/com/earth2me/essentials/Util.java @@ -218,7 +218,7 @@ public class Util public static Location getSafeDestination(Location loc) throws Exception { - if (loc == null) + if (loc == null || loc.getWorld() == null) { throw new Exception(Util.i18n("destinationNotSet")); }