From fb62b8663246e70e19d002e7e4057d44922610e1 Mon Sep 17 00:00:00 2001 From: canitzp Date: Wed, 7 Oct 2020 08:28:30 +0200 Subject: [PATCH] I knew I forgot something Signed-off-by: canitzp --- .../ellpeck/actuallyadditions/common/recipes/CrusherRecipe.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/de/ellpeck/actuallyadditions/common/recipes/CrusherRecipe.java b/src/main/java/de/ellpeck/actuallyadditions/common/recipes/CrusherRecipe.java index d1dff27cb..eee44109d 100644 --- a/src/main/java/de/ellpeck/actuallyadditions/common/recipes/CrusherRecipe.java +++ b/src/main/java/de/ellpeck/actuallyadditions/common/recipes/CrusherRecipe.java @@ -109,6 +109,7 @@ public class CrusherRecipe implements IDummyRecipe { JsonObject secondary = new JsonObject(); secondary.add("output", this.writeItemStack(recipe.getSecondaryOutput())); secondary.addProperty("chance", recipe.getOutputChance()); + json.add("secondary", secondary); } }