From 566c9dbda098b0cf8433776d622e0c3594221d16 Mon Sep 17 00:00:00 2001 From: Matsv Date: Sun, 7 Jan 2018 17:28:50 +0100 Subject: [PATCH] Remove debug message --- .../protocolsnapshotto1_12_2/packets/InventoryPackets.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_12_2/packets/InventoryPackets.java b/common/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_12_2/packets/InventoryPackets.java index da311be98..0d93f46b7 100644 --- a/common/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_12_2/packets/InventoryPackets.java +++ b/common/src/main/java/us/myles/ViaVersion/protocols/protocolsnapshotto1_12_2/packets/InventoryPackets.java @@ -70,7 +70,7 @@ public class InventoryPackets { @Override public void handle(PacketWrapper wrapper) throws Exception { String channel = wrapper.get(Type.STRING, 0); - // Handle stopsound change + // Handle stopsound change TODO change location of this remap to other class? if (channel.equalsIgnoreCase("MC|StopSound")) { String originalSource = wrapper.read(Type.STRING); String originalSound = wrapper.read(Type.STRING); @@ -89,7 +89,6 @@ public class InventoryPackets { finalSource = Optional.of(SoundSource.MASTER); } - System.out.println(finalSource.get()); wrapper.write(Type.VAR_INT, finalSource.get().getId()); } if (!originalSound.isEmpty()) {