mirror of
https://github.com/BentoBoxWorld/BentoBox.git
synced 2024-11-24 19:55:17 +01:00
Merge pull request #2474 from DinoFengz/patch-1
Update RemoveMobsListener.java
This commit is contained in:
commit
6cbbdad34e
@ -24,15 +24,20 @@ public class RemoveMobsListener extends FlagListener {
|
||||
|| e.getCause().equals(TeleportCause.SPECTATE)) {
|
||||
return;
|
||||
}
|
||||
// Return if this is a small teleport
|
||||
if (e.getTo().getWorld().equals(e.getPlayer().getWorld()) &&
|
||||
e.getTo().distanceSquared(e.getPlayer().getLocation()) < getPlugin().getSettings().getClearRadius() * getPlugin().getSettings().getClearRadius()) {
|
||||
return;
|
||||
}
|
||||
// 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()));
|
||||
|
||||
if(e.getTo() != null) {
|
||||
// Return if this is a small teleport
|
||||
if (e.getTo().getWorld().equals(e.getPlayer().getWorld()) &&
|
||||
e.getTo().distanceSquared(e.getPlayer().getLocation()) < getPlugin().getSettings().getClearRadius() * getPlugin().getSettings().getClearRadius()) {
|
||||
return;
|
||||
}
|
||||
|
||||
// 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)
|
||||
|
Loading…
Reference in New Issue
Block a user