Skip to content

Commit

Permalink
Fix incorrect superTransferStackInSlot method call (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
miozune authored Feb 20, 2025
1 parent b78f866 commit 78f9504
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ public boolean canInteractWith(@NotNull EntityPlayer playerIn) {
}

public @NotNull ItemStack superTransferStackInSlot(@NotNull EntityPlayer playerIn, int index) {
return this.containerCustomizer.transferStackInSlot(playerIn, index);
return super.transferStackInSlot(playerIn, index);
}

@Override
Expand Down

0 comments on commit 78f9504

Please sign in to comment.