mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-01 00:10:40 +01:00
Update RemoveMobsListener.java
Prevent null value
This commit is contained in:
parent
09c9e9348b
commit
04745330c7
@ -24,15 +24,19 @@ public class RemoveMobsListener extends FlagListener {
|
|||||||
|| e.getCause().equals(TeleportCause.SPECTATE)) {
|
|| e.getCause().equals(TeleportCause.SPECTATE)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Return if this is a small teleport
|
|
||||||
if (e.getTo().getWorld().equals(e.getPlayer().getWorld()) &&
|
if(e.getTo() != null) {
|
||||||
e.getTo().distanceSquared(e.getPlayer().getLocation()) < getPlugin().getSettings().getClearRadius() * getPlugin().getSettings().getClearRadius()) {
|
// Return if this is a small teleport
|
||||||
return;
|
if (e.getTo().getWorld().equals(e.getPlayer().getWorld()) &&
|
||||||
}
|
e.getTo().distanceSquared(e.getPlayer().getLocation()) < getPlugin().getSettings().getClearRadius() * getPlugin().getSettings().getClearRadius()) {
|
||||||
// Only process if flag is active
|
return;
|
||||||
if (getIslands().locationIsOnIsland(e.getPlayer(), e.getTo()) && Flags.REMOVE_MOBS.isSetForWorld(e.getTo().getWorld())) {
|
}
|
||||||
Bukkit.getScheduler().runTask(getPlugin(), () -> getIslands().clearArea(e.getTo()));
|
// Only process if flag is active
|
||||||
|
if (getIslands().locationIsOnIsland(e.getPlayer(), e.getTo()) && Flags.REMOVE_MOBS.isSetForWorld(e.getTo().getWorld())) {
|
||||||
|
Bukkit.getScheduler().runTask(getPlugin(), () -> getIslands().clearArea(e.getTo()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
|
@EventHandler(priority = EventPriority.NORMAL, ignoreCancelled = true)
|
||||||
|
Loading…
Reference in New Issue
Block a user