Fixed not being able to start fluid crafting tasks

This commit is contained in:
raoulvdberge
2019-11-01 13:38:22 +01:00
parent bc74c58b89
commit 68590425c2

View File

@@ -134,7 +134,7 @@ public class FluidGridHandler implements IFluidGridHandler {
Collections.singletonList(new ErrorCraftingPreviewElement(error.getType(), error.getRecursedPattern() == null ? ItemStack.EMPTY : error.getRecursedPattern().getStack())), Collections.singletonList(new ErrorCraftingPreviewElement(error.getType(), error.getRecursedPattern() == null ? ItemStack.EMPTY : error.getRecursedPattern().getStack())),
id, id,
quantity, quantity,
false true
) )
); );
} else if (noPreview && !task.hasMissing()) { } else if (noPreview && !task.hasMissing()) {
@@ -148,7 +148,7 @@ public class FluidGridHandler implements IFluidGridHandler {
task.getPreviewStacks(), task.getPreviewStacks(),
id, id,
quantity, quantity,
false true
) )
); );
} }