im stupid

This commit is contained in:
Luca 2021-11-21 21:08:20 +01:00
parent 8b64728700
commit 8ee2dc29f3

View File

@ -57,7 +57,7 @@ public class HotbarManager {
} }
private void loadQueueItems() { private void loadQueueItems() {
spawnItems.add(new HotbarItem( queueItems.add(new HotbarItem(
ItemUtil.createUnbreakableItem( ItemUtil.createUnbreakableItem(
Material.INK_SACK, CC.translate("&e&l» &cLeave Queue &e&l«"), 1, (short) 1 Material.INK_SACK, CC.translate("&e&l» &cLeave Queue &e&l«"), 1, (short) 1
), 8, true, "LEAVE_QUEUE") ), 8, true, "LEAVE_QUEUE")
@ -65,17 +65,17 @@ public class HotbarManager {
} }
private void loadPartyItems() { private void loadPartyItems() {
spawnItems.add(new HotbarItem( partyItems.add(new HotbarItem(
ItemUtil.createUnbreakableItem( ItemUtil.createUnbreakableItem(
Material.GOLD_SWORD, CC.translate("&e&l» &dParty Games &e&l«"), 1, (short) 0 Material.GOLD_SWORD, CC.translate("&e&l» &dParty Games &e&l«"), 1, (short) 0
), 0, true, "PARTY_GAMES") ), 0, true, "PARTY_GAMES")
); );
spawnItems.add(new HotbarItem( partyItems.add(new HotbarItem(
ItemUtil.createUnbreakableItem( ItemUtil.createUnbreakableItem(
Material.NETHER_STAR, CC.translate("&e&l» &dParty Info &e&l«"), 1, (short) 0 Material.NETHER_STAR, CC.translate("&e&l» &dParty Info &e&l«"), 1, (short) 0
), 4, true, "PARTY_INFO") ), 4, true, "PARTY_INFO")
); );
spawnItems.add(new HotbarItem( partyItems.add(new HotbarItem(
ItemUtil.createUnbreakableItem( ItemUtil.createUnbreakableItem(
Material.INK_SACK, CC.translate("&e&l» &cLeave Party &e&l«"), 1, (short) 1 Material.INK_SACK, CC.translate("&e&l» &cLeave Party &e&l«"), 1, (short) 1
), 8, true, "PARTY_LEAVE") ), 8, true, "PARTY_LEAVE")
@ -83,12 +83,12 @@ public class HotbarManager {
} }
private void loadSpectatorItems() { private void loadSpectatorItems() {
spawnItems.add(new HotbarItem( spectatorItems.add(new HotbarItem(
ItemUtil.createUnbreakableItem( ItemUtil.createUnbreakableItem(
Material.COMPASS, CC.translate("&e&l» &dPlayer Tracker &e&l«"), 1, (short) 0 Material.COMPASS, CC.translate("&e&l» &dPlayer Tracker &e&l«"), 1, (short) 0
), 0, true, "SPECTATOR_MENU") ), 0, true, "SPECTATOR_MENU")
); );
spawnItems.add(new HotbarItem( spectatorItems.add(new HotbarItem(
ItemUtil.createUnbreakableItem( ItemUtil.createUnbreakableItem(
Material.INK_SACK, CC.translate("&e&l» &cLeave Spectator Mode &e&l«"), 1, (short) 1 Material.INK_SACK, CC.translate("&e&l» &cLeave Spectator Mode &e&l«"), 1, (short) 1
), 8, true, "SPECTATOR_LEAVE") ), 8, true, "SPECTATOR_LEAVE")