diff --git a/MinecraftClient/Protocol/Handlers/DataTypes.cs b/MinecraftClient/Protocol/Handlers/DataTypes.cs index cbeeabbe10..638171536d 100644 --- a/MinecraftClient/Protocol/Handlers/DataTypes.cs +++ b/MinecraftClient/Protocol/Handlers/DataTypes.cs @@ -686,7 +686,6 @@ private object ReadNbtField(Queue cache, int fieldType) ? key >> 5 // 1.8 : ReadNextVarInt(cache); // 1.9+ - EntityMetaDataType type; try { diff --git a/MinecraftClient/Protocol/Handlers/Protocol18.cs b/MinecraftClient/Protocol/Handlers/Protocol18.cs index 0f9e8e6f04..b4b3d98f30 100644 --- a/MinecraftClient/Protocol/Handlers/Protocol18.cs +++ b/MinecraftClient/Protocol/Handlers/Protocol18.cs @@ -452,7 +452,6 @@ internal bool HandlePacket(int packetId, Queue packetData) } catch (Exception innerException) { - //throw; if (innerException is ThreadAbortException || innerException is SocketException || innerException.InnerException is SocketException) throw; //Thread abort or Connection lost rather than invalid data