From be7ca772f2531107a767feab71fb84e0d75a88f3 Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 12 Jan 2018 00:53:14 +0000 Subject: [PATCH] Throwing TNT -> Throwable TNT --- .../nautilus/game/arcade/game/modules/ThrowableTNTModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/ThrowableTNTModule.java b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/ThrowableTNTModule.java index 9b39fa7d0..ba805ca62 100644 --- a/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/ThrowableTNTModule.java +++ b/Plugins/Nautilus.Game.Arcade/src/nautilus/game/arcade/game/modules/ThrowableTNTModule.java @@ -124,7 +124,7 @@ public class ThrowableTNTModule extends Module { for (Player other : UtilPlayer.getNearby(entity.getLocation(), EXPLOSION_RADIUS)) { - getGame().getArcadeManager().GetCondition().Factory().Explosion("Throwing TNT", other, player, 50, 0.1, false, false); + getGame().getArcadeManager().GetCondition().Factory().Explosion("Throwable TNT", other, player, 50, 0.1, false, false); } } }