diff --git a/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/EntityPackets1_14.java b/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/EntityPackets1_14.java index 6c9af986..aa39eecc 100644 --- a/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/EntityPackets1_14.java +++ b/core/src/main/java/nl/matsv/viabackwards/protocol/protocol1_13_2to1_14/packets/EntityPackets1_14.java @@ -514,7 +514,7 @@ public class EntityPackets1_14 extends EntityRewriter { int entityId = wrapper.get(Type.VAR_INT, 0); Optional optStoredEntity = getEntityTracker(wrapper.user()).getEntity(entityId); if (!optStoredEntity.isPresent()) { - ViaBackwards.getPlatform().getLogger().warning("Stored entity with id " + entityId + " not found!"); + ViaBackwards.getPlatform().getLogger().warning("Stored entity with id " + entityId + " not found in packet " + Integer.toHexString(wrapper.getId())); return; }