Skip to content

Commit

Permalink
Merge pull request #516 from P3pp3rF1y/1.21.x-dev
Browse files Browse the repository at this point in the history
fix: 🐛 Fixed storage input block to accept more than 64 max stack siz…
  • Loading branch information
P3pp3rF1y authored Oct 31, 2024
2 parents 73bf994 + 0b22f03 commit 73aaef2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ loader_version_range=[4,)
mod_id=sophisticatedstorage
mod_name=Sophisticated Storage
mod_license=GNU General Public License v3.0
mod_version=0.10.45
mod_version=0.10.46
mod_group_id=sophisticatedstorage
mod_authors=P3pp3rF1y, Ridanisaurus
mod_description=Fancy and functional storage containers.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public int getSlots() {

@Override
public int getSlotLimit(int slot) {
return 64;
return 99;
}

@Override
Expand Down

0 comments on commit 73aaef2

Please sign in to comment.