From 9d32a331ca7a307c19da7b4394acfa62e563d1c8 Mon Sep 17 00:00:00 2001 From: YoyoNow Date: Tue, 16 Dec 2025 14:50:56 +0100 Subject: [PATCH] Improve TNTDistributor --- .../src/de/steamwar/fightsystem/event/TNTDistributor.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java index cb77334d..7c76c2ca 100644 --- a/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java +++ b/FightSystem/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java @@ -35,7 +35,7 @@ public class TNTDistributor { if(!fp.isLiving()) return; - fp.ifPlayer(player -> player.getInventory().addItem(new ItemStack(Material.TNT, 20))); - })), 300, 300); + fp.ifPlayer(player -> player.getInventory().addItem(new ItemStack(Material.TNT, 1))); + })), 20, 20); } }