From cc93551339ed082334162bc9fb9447b95d332e23 Mon Sep 17 00:00:00 2001 From: KennyTV <28825609+KennyTV@users.noreply.github.com> Date: Mon, 16 Dec 2019 20:58:53 +0100 Subject: [PATCH] Add more info to missing entity warning in position cache --- .../protocol1_13_2to1_14/packets/EntityPackets1_14.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }