diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/EnderPearlModule.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/EnderPearlModule.java index 1d70aff91..584e7aaa7 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/EnderPearlModule.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/EnderPearlModule.java @@ -80,7 +80,7 @@ public class EnderPearlModule extends Module { Projectile entity = event.getEntity(); - if (!(entity instanceof EnderPearl) || !(entity.getShooter() instanceof Player)) + if (!getGame().IsLive() || !(entity instanceof EnderPearl) || !(entity.getShooter() instanceof Player)) { return; }