From 6343a00b537d3fff30ff2d57c352cbb21fc781cf Mon Sep 17 00:00:00 2001 From: libraryaddict Date: Sat, 10 Jan 2015 09:08:35 +1300 Subject: [PATCH] Instead of removing the shot arrow, cancel the event instead. Fixes kit Shredder being usable during buildtime --- .../nautilus/game/arcade/game/games/turfforts/TurfForts.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/turfforts/TurfForts.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/turfforts/TurfForts.java index d650df897..1e22d7524 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/turfforts/TurfForts.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/games/turfforts/TurfForts.java @@ -274,7 +274,7 @@ public class TurfForts extends TeamGame if (!_fight) { UtilPlayer.message(event.getEntity(), F.main("Game", "You cannot attack during Build Time!")); - event.getProjectile().remove(); + event.setCancelled(true); } }