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
@@ -62,6 +62,11 @@ public class OptionalSlotFake extends SlotFake implements IOptionalSlot {
return this.host.isSlotEnabled(this.groupNum);
}
@Override
public int getSlotStackLimit() {
return Integer.MAX_VALUE;
}
@Override
public boolean isRenderDisabled() {
return this.renderDisabled;