Skip to content

Commit

Permalink
Require sameItemSameTags on seed pouch
Browse files Browse the repository at this point in the history
  • Loading branch information
quat1024 committed Feb 11, 2024
1 parent 316e058 commit 4aacdee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ public boolean canFit(ItemStack other) {
if(isEmpty())
return other.is(SeedPouchModule.seedPouchHoldableTag);
else
return this.count < SeedPouchModule.maxItems && ItemStack.isSameItem(seed, other);
return this.count < SeedPouchModule.maxItems && ItemStack.isSameItemSameTags(seed, other);
}

}
Expand Down

0 comments on commit 4aacdee

Please sign in to comment.