From ef8cdef05cab93614553b5e12105663c672f582b Mon Sep 17 00:00:00 2001 From: Lixfel Date: Wed, 29 Nov 2023 15:47:48 +0100 Subject: [PATCH] Distribute first TNT after 300s Signed-off-by: Lixfel --- .../src/de/steamwar/fightsystem/event/TNTDistributor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java b/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java index 6e0d81d..8982bb3 100644 --- a/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java +++ b/FightSystem_Core/src/de/steamwar/fightsystem/event/TNTDistributor.java @@ -34,6 +34,6 @@ public class TNTDistributor { return; fp.ifPlayer(player -> player.getInventory().addItem(new ItemStack(Material.TNT, 20))); - })), 0, 300); + })), 300, 300); } }