diff --git a/src/main/java/com/sekwah/narutomod/network/PacketHandler.java b/src/main/java/com/sekwah/narutomod/network/PacketHandler.java index 25ed6d08..c05c404f 100644 --- a/src/main/java/com/sekwah/narutomod/network/PacketHandler.java +++ b/src/main/java/com/sekwah/narutomod/network/PacketHandler.java @@ -30,7 +30,6 @@ public class PacketHandler { if (version.equals(PROTOCOL_VERSION)) { return true; } else { - LOGGER.error("Client attempted to connect with a different version of the mod. Client Version: " + PROTOCOL_VERSION + " Server Version: " + version); return false; } }) @@ -38,7 +37,6 @@ public class PacketHandler { if (version.equals(PROTOCOL_VERSION)) { return true; } else { - LOGGER.error("Client attempted to connect with a different version of the mod. Server Version: " + PROTOCOL_VERSION + " Client Version: " + version); return false; } })