allow interface itemstack handler to accept over sized stacks

This commit is contained in:
PrototypeTrousers
2022-10-12 17:40:25 -03:00
parent 2e9a5dc8ea
commit 4bac5f43db
9 changed files with 124 additions and 16 deletions
@@ -27,4 +27,9 @@ public class SlotFakeCraftingMatrix extends SlotFake {
public SlotFakeCraftingMatrix(final IItemHandler inv, final int idx, final int x, final int y) {
super(inv, idx, x, y);
}
@Override
public int getSlotStackLimit() {
return Integer.MAX_VALUE;
}
}