From 22a36c6174364fb7c1c12939dd850d62c0088387 Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 11 May 2018 12:52:42 +0100 Subject: [PATCH] Merge the ender pearl fix in --- .../src/nautilus/game/arcade/game/modules/EnderPearlModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }