remove leftover debug prints

This commit is contained in:
sylvessa 2026-03-28 14:48:02 -05:00
parent 017f42b7cd
commit 360cba9ad5

View file

@ -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);
}