Voluminous Energy

Voluminous Energy

40.8k Downloads

wrong pattern encoding on Refined Storage when move items in JEI

gisellevonbingen opened this issue ยท 1 comments

commented

Describe the bug
image
image

i guess coal dust and water have to move to input grid (left)

itemStacks.init(0, false, 2, 10);
fluidStacks.init(1, false, 25, 11);
fluidStacks.init(2, false, 73,11);

i found cause from JEI Category code
ingredients are need be set as input (via set 'input' argument)
like this

itemStacks.init(0, true, 2, 10);
fluidStacks.init(1, true, 25, 11);
fluidStacks.init(2, false, 73,11);

it seem all of category has same problem

commented

Should be fixed in PR #74