From 897ee7224087ed4c6526ad0ceef6227ec8ace3dd Mon Sep 17 00:00:00 2001 From: Danielshe Date: Sat, 28 Sep 2019 20:30:42 +0800 Subject: Unstable REI Release for 19w38a/b --- .../java/me/shedaniel/rei/plugin/crafting/DefaultShapedDisplay.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main/java/me/shedaniel/rei/plugin/crafting/DefaultShapedDisplay.java') diff --git a/src/main/java/me/shedaniel/rei/plugin/crafting/DefaultShapedDisplay.java b/src/main/java/me/shedaniel/rei/plugin/crafting/DefaultShapedDisplay.java index 33be540d0..f82a858f5 100644 --- a/src/main/java/me/shedaniel/rei/plugin/crafting/DefaultShapedDisplay.java +++ b/src/main/java/me/shedaniel/rei/plugin/crafting/DefaultShapedDisplay.java @@ -24,7 +24,7 @@ public class DefaultShapedDisplay implements DefaultCraftingDisplay { public DefaultShapedDisplay(ShapedRecipe recipe) { this.display = recipe; - this.input = recipe.getPreviewInputs().stream().map(i -> Arrays.asList(i.getStackArray())).collect(Collectors.toList()); + this.input = recipe.getPreviewInputs().stream().map(i -> Arrays.asList(i.getMatchingStacksClient())).collect(Collectors.toList()); this.output = Collections.singletonList(recipe.getOutput()); } -- cgit