mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-26 07:06:44 +01:00
fix portal NPE
This commit is contained in:
parent
0d75622196
commit
8a63b8937f
@ -783,6 +783,9 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
|
|||||||
|
|
||||||
@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.HIGHEST, ignoreCancelled = true)
|
||||||
public static void onTeleport(final PlayerTeleportEvent event) {
|
public static void onTeleport(final PlayerTeleportEvent event) {
|
||||||
|
if (event.getTo() == null || event.getFrom() == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
final Location f = BukkitUtil.getLocation(event.getFrom());
|
final Location f = BukkitUtil.getLocation(event.getFrom());
|
||||||
final Location t = BukkitUtil.getLocation(event.getTo());
|
final Location t = BukkitUtil.getLocation(event.getTo());
|
||||||
final Location q = new Location(t.getWorld(), t.getX(), 64, t.getZ());
|
final Location q = new Location(t.getWorld(), t.getX(), 64, t.getZ());
|
||||||
|
Loading…
Reference in New Issue
Block a user