Change log level to debug in PacketHelperServer

This commit is contained in:
Mrbysco 2024-11-20 14:55:02 +01:00
parent 9492973a28
commit dd6fb2053c

View file

@ -32,7 +32,7 @@ public final class PacketHelperServer {
CompoundTag data = new CompoundTag();
PlayerData.getDataFromPlayer(player).writeToNBT(data, false);
compound.put("Data", data);
ActuallyAdditions.LOGGER.info("Sending data {}", data);
ActuallyAdditions.LOGGER.debug("Sending data {}", data);
if (player instanceof ServerPlayer serverPlayer) {
serverPlayer.connection.send(new SyncPlayerPacket(data));