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:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user