diff --git a/Minecraft.Server.FourKit/Inventory/PlayerInventory.cs b/Minecraft.Server.FourKit/Inventory/PlayerInventory.cs index bc33a9ea7..9d50fa088 100644 --- a/Minecraft.Server.FourKit/Inventory/PlayerInventory.cs +++ b/Minecraft.Server.FourKit/Inventory/PlayerInventory.cs @@ -365,22 +365,16 @@ public class PlayerInventory : Inventory if (meta.hasEnchants()) { - - Debug.WriteLine("Writting Enchants"); var enchants = meta.getEnchants(); bw.Write(enchants.Count); foreach (var enchant in enchants) { - Debug.WriteLine("Wrote A Enchant"); - bw.Write((int)enchant.Key); bw.Write(enchant.Value); } } else { - Debug.WriteLine("Had No Enchants"); - bw.Write(0); }