Skip to content

Commit

Permalink
Merge pull request #320 from bill0042/changes
Browse files Browse the repository at this point in the history
Fixed stack transfers with more than 1 item
  • Loading branch information
joaopmarquesini authored Nov 16, 2023
2 parents 66c6e89 + 0cf8acb commit 4786ab3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ class InventoryItemDetailsBloc extends ItemDetailsBloc {
final item = this.item;
if (item == null) return;
if (actionType == TransferActionType.Transfer) {
_inventoryBloc.transfer(item, destination);
_inventoryBloc.transfer(item, destination, stackSize: stackSize);
} else {
_inventoryBloc.equip(item, destination);
}
Expand Down

0 comments on commit 4786ab3

Please sign in to comment.