mirror of
https://github.com/libraryaddict/LibsDisguises.git
synced 2024-11-05 09:09:40 +01:00
Don't send empty meta
This commit is contained in:
parent
796ae26ed7
commit
caa25296be
@ -30,17 +30,18 @@ public class PacketHandlerMetadata implements IPacketHandler {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void handle(Disguise disguise, PacketContainer sentPacket, LibsPackets packets, Player observer,
|
||||
Entity entity) {
|
||||
|
||||
public void handle(Disguise disguise, PacketContainer sentPacket, LibsPackets packets, Player observer, Entity entity) {
|
||||
packets.clear();
|
||||
|
||||
if (!DisguiseConfig.isMetaPacketsEnabled()) {
|
||||
return;
|
||||
}
|
||||
|
||||
List<WrappedWatchableObject> watchableObjects = disguise.getWatcher()
|
||||
.convert(observer, sentPacket.getWatchableCollectionModifier().read(0));
|
||||
List<WrappedWatchableObject> watchableObjects = disguise.getWatcher().convert(observer, sentPacket.getWatchableCollectionModifier().read(0));
|
||||
|
||||
if (watchableObjects.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
|
||||
PacketContainer metaPacket = new PacketContainer(PacketType.Play.Server.ENTITY_METADATA);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user