9
0
mirror of https://github.com/HibiscusMC/HibiscusCommons.git synced 2025-12-19 15:09:26 +00:00

clean: forgot to make em static

This commit is contained in:
LoJoSho
2023-12-23 12:21:04 -06:00
parent 814419d2a1
commit 765c6a7bf7

View File

@@ -219,14 +219,14 @@ public class PacketManager {
return viewers; return viewers;
} }
public void slotUpdate( public static void slotUpdate(
Player player, Player player,
int slot int slot
) { ) {
NMSHandlers.getHandler().slotUpdate(player, slot); NMSHandlers.getHandler().slotUpdate(player, slot);
} }
public void equipmentSlotUpdate( public static void equipmentSlotUpdate(
int entityId, int entityId,
org.bukkit.inventory.EquipmentSlot slot, org.bukkit.inventory.EquipmentSlot slot,
ItemStack item, ItemStack item,
@@ -235,7 +235,7 @@ public class PacketManager {
NMSHandlers.getHandler().equipmentSlotUpdate(entityId, slot, item, sendTo); NMSHandlers.getHandler().equipmentSlotUpdate(entityId, slot, item, sendTo);
} }
public void equipmentSlotUpdate( public static void equipmentSlotUpdate(
int entityId, int entityId,
HashMap<EquipmentSlot, ItemStack> equipment, HashMap<EquipmentSlot, ItemStack> equipment,
List<Player> sendTo List<Player> sendTo