From a5bbb602f705a4f8bb94fdd83879dd43dbd7b417 Mon Sep 17 00:00:00 2001 From: modmuss50 Date: Thu, 8 Aug 2019 23:27:43 +0100 Subject: [PATCH] Dont crash with the rolling machine, wont work just yet. --- src/main/java/techreborn/api/RollingMachineRecipe.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/techreborn/api/RollingMachineRecipe.java b/src/main/java/techreborn/api/RollingMachineRecipe.java index 4c1d5e0da..eab2138c8 100644 --- a/src/main/java/techreborn/api/RollingMachineRecipe.java +++ b/src/main/java/techreborn/api/RollingMachineRecipe.java @@ -36,19 +36,19 @@ public class RollingMachineRecipe { public static final RollingMachineRecipe instance = new RollingMachineRecipe(); public void addShapedOreRecipe(Identifier resourceLocation, ItemStack outputItemStack, Object... objectInputs) { - throw new UnsupportedOperationException("Needs moving to json"); + } public void addShapelessOreRecipe(Identifier resourceLocation, ItemStack outputItemStack, Object... objectInputs) { - throw new UnsupportedOperationException("Needs moving to json"); + } public ItemStack findMatchingRecipeOutput(CraftingInventory inv, World world) { - throw new UnsupportedOperationException("Needs moving to json"); + return ItemStack.EMPTY; } public Recipe findMatchingRecipe(CraftingInventory inv, World world) { - throw new UnsupportedOperationException("Needs moving to json"); + return null; } }