Skip to content

Commit

Permalink
Fix stack limit calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
jaquadro committed Sep 10, 2019
1 parent 23081dd commit d9c7a8f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public int getEffectiveDrawerCapacity () {
if (upgradeData.hasOneStackUpgrade())
return 1;

return getDrawerCapacity();
return getDrawerCapacity() * CommonConfig.GENERAL.baseStackStorage.get();
}

/*@Override
Expand Down

0 comments on commit d9c7a8f

Please sign in to comment.