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

feat: move all packet sending to be async

This commit is contained in:
Logan
2025-09-06 23:13:02 -05:00
parent 32375e68be
commit a9b28dd6e5
13 changed files with 386 additions and 36 deletions

View File

@@ -97,5 +97,10 @@ public interface NMSPackets {
void sendToastPacket(Player player, ItemStack icon, Component title, Component description);
void sendInvisibleParticleCloud(int entityId, Location location, UUID uuid, List<Player> sendTo);
// The mask here is for is the armorstand is on fire or not.
void sendInvisibleArmorstand(int entityId, Location location, UUID uuid, byte mask, List<Player> sendTo);
Object createMountPacket(int entityId, int[] passengerIds);
}