Skip to content

Commit

Permalink
fixed method in extended container wrapper
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Feb 18, 2024
1 parent b2255e1 commit df215fc
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,9 @@ public ItemStack insertItem(int slot, @NotNull ItemStack stack, boolean simulate
public ItemStack extractItem(int slot, int amount, boolean simulate) {
return ((ExtendedItemContainer)getInv()).extractItem(slot, amount, simulate);
}

@Override
public int getSlotLimit(int slot) {
return ((ExtendedItemContainer)getInv()).getSlotLimit(slot);
}
}

0 comments on commit df215fc

Please sign in to comment.