remove debug stuff

This commit is contained in:
dfsek
2021-02-23 22:36:22 -07:00
parent 4171768cc9
commit 83f981111a
3 changed files with 0 additions and 7 deletions

View File

@@ -26,7 +26,6 @@ public class FabricInventory implements Inventory {
@Override
public ItemStack getItem(int slot) {
net.minecraft.item.ItemStack itemStack = delegate.getStack(slot);
System.out.println("item @ " + slot + " GET: " + itemStack);
return itemStack.getItem() == Items.AIR ? null : FabricAdapter.adapt(itemStack);
}
@@ -34,6 +33,5 @@ public class FabricInventory implements Inventory {
public void setItem(int slot, ItemStack newStack) {
System.out.println("item @ " + slot + ": " + newStack.getHandle());
delegate.setStack(slot, FabricAdapter.adapt(newStack));
}
}