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

Revert "feat: move all packet sending to be async"

This reverts commit a9b28dd6
This commit is contained in:
Logan
2025-10-11 22:14:57 -05:00
parent 3c94b402e6
commit 56a41ff660
13 changed files with 40 additions and 508 deletions

View File

@@ -97,12 +97,5 @@ 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);
void sendInvisibleEntity(int entityId, EntityType type, Location location, UUID uuid, List<Player> sendTo);
Object createMountPacket(int entityId, int[] passengerIds);
}