From 334268ec94ed12a8eb044111068c5505ae45449c Mon Sep 17 00:00:00 2001 From: Lixfel Date: Sat, 21 May 2022 15:28:57 +0200 Subject: [PATCH] Fix ready Signed-off-by: Lixfel --- .../src/de/steamwar/fightsystem/fight/FightTeam.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java b/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java index f0ea6bd..7c28bdb 100644 --- a/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java +++ b/FightSystem_Core/src/de/steamwar/fightsystem/fight/FightTeam.java @@ -76,7 +76,7 @@ public class FightTeam { } private static final HotbarKit readyKit = new HotbarKit(memberKit); static { - readyKit.setItem(1, null); + readyKit.setItem(1, null, null, null); readyKit.setItem(4, "TEAM_READY", new ItemBuilder(SWItem.getDye(8), (short) 8).removeAllAttributes().addEnchantment(Enchantment.DURABILITY,1 ).build(), player -> Objects.requireNonNull(Fight.getPlayerTeam(player)).setReady(false)); }