Fix spawn tracker mapping data check

This commit is contained in:
Nassim Jahnke 2023-08-10 17:13:08 +10:00
parent f4cc9d4730
commit 0d147653f3

View File

@ -90,6 +90,10 @@ public abstract class EntityRewriter<C extends ClientboundPacketType, T extends
public PacketHandler getSpawnTrackerWithDataHandler1_19(EntityType fallingBlockType) {
return wrapper -> {
if (protocol.getMappingData() == null) {
return;
}
// Check against the UNMAPPED entity type
EntityType entityType = trackAndMapEntity(wrapper);
if (entityType == fallingBlockType) {