Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weā€™ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: šŸ› Fixed stashing logic to be able to stash oversized stacks (larā€¦ #1171

Merged
merged 1 commit into from
Oct 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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=sophisticatedbackpacks
mod_name=Sophisticated Backpacks
mod_license=GNU General Public License v3.0
mod_version=3.20.16
mod_version=3.20.17
mod_group_id=sophisticatedbackpacks
mod_authors=P3pp3rF1y, Ridanisaurus
mod_description=Fancy and functional backpacks.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -336,8 +336,14 @@ public boolean overrideStackedOnOther(ItemStack storageStack, Slot slot, ClickAc
ItemStack stashResult = stash(storageStack, stackToStash, true);
if (stashResult.getCount() < stackToStash.getCount()) {
int countToTake = stackToStash.getCount() - stashResult.getCount();
ItemStack takeResult = slot.safeTake(countToTake, countToTake, player);
stash(storageStack, takeResult, false);
while (countToTake > 0) {
ItemStack takeResult = slot.safeTake(countToTake, countToTake, player);
if (takeResult.isEmpty()) {
break;
}
stash(storageStack, takeResult, false);
countToTake -= takeResult.getCount();
}
return true;
}

Expand Down