If, for example, you start with a stack of 50 coal for example, the first furnace will receive half of the stack, or 25 coal. The pattern then appears to continue and rounds down to the nearest integer. The total distribution looks like this:
Code: Select all
25,12,6,3,2,1 == 49 total
Now I understand that it is a 'stack split' function, but in 0.15 with the hover drag of shift+right mouse to distribute resources, it is very annoying to be left with a single item in hand at the end, unable to drop it using the same method you did to just drop potentially hundreds or thousands of other objects into entities.
I would propose that the math be changed so that it instead just rounds up to the nearest integer instead. Now the pattern is:
Code: Select all
25,13,6,3,2,1 == 50 total