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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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;
}