mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-23 07:38:34 +01:00
Change log level to debug in PacketHelperServer
This commit is contained in:
parent
9492973a28
commit
dd6fb2053c
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
|
Loading…
Reference in a new issue