mirror of
https://github.com/Ellpeck/PrettyPipes.git
synced 2024-11-22 11:53:29 +01:00
avoid unnecessarily copying stacks in getAvailableDestination
This commit is contained in:
parent
3d65dc34db
commit
2459348faa
1 changed files with 1 additions and 1 deletions
|
@ -239,8 +239,8 @@ public class PipeBlockEntity extends BlockEntity implements MenuProvider, IPipeC
|
||||||
}
|
}
|
||||||
// totalSpace will be the amount of items that fit into the attached container
|
// totalSpace will be the amount of items that fit into the attached container
|
||||||
var totalSpace = 0;
|
var totalSpace = 0;
|
||||||
for (var i = startSlot; i < slotAmount; i++) {
|
|
||||||
var copy = stack.copy();
|
var copy = stack.copy();
|
||||||
|
for (var i = startSlot; i < slotAmount; i++) {
|
||||||
var maxStackSize = copy.getMaxStackSize();
|
var maxStackSize = copy.getMaxStackSize();
|
||||||
// if the container can store more than 64 items in this slot, then it's likely
|
// if the container can store more than 64 items in this slot, then it's likely
|
||||||
// a barrel or similar, meaning that the slot limit matters more than the max stack size
|
// a barrel or similar, meaning that the slot limit matters more than the max stack size
|
||||||
|
|
Loading…
Reference in a new issue