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

feat: add generic invisible entity bundled packet

(cherry picked from commit 90f6a2a3f2)
This commit is contained in:
Logan
2025-09-07 21:34:53 -05:00
parent f5a8407b9d
commit 6c2049e1f6
7 changed files with 116 additions and 4 deletions

View File

@@ -102,5 +102,7 @@ public interface NMSPackets {
// 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);
}