1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-29 19:59:13 +00:00

Move "unknown entity definition" spam to debug level (#4270)

This commit is contained in:
chris
2023-11-04 16:06:23 +01:00
committed by GitHub
parent ec526a798d
commit a559cde654

View File

@@ -49,7 +49,7 @@ public class JavaAddEntityTranslator extends PacketTranslator<ClientboundAddEnti
public void translate(GeyserSession session, ClientboundAddEntityPacket packet) {
EntityDefinition<?> definition = Registries.ENTITY_DEFINITIONS.get(packet.getType());
if (definition == null) {
session.getGeyser().getLogger().warning("Could not find an entity definition with type " + packet.getType());
session.getGeyser().getLogger().debug("Could not find an entity definition with type " + packet.getType());
return;
}