Dont crash with the rolling machine, wont work just yet.

This commit is contained in:
modmuss50 2019-08-08 23:27:43 +01:00
parent 2bda5c6ce4
commit a5bbb602f7

View file

@ -36,19 +36,19 @@ public class RollingMachineRecipe {
public static final RollingMachineRecipe instance = new RollingMachineRecipe(); public static final RollingMachineRecipe instance = new RollingMachineRecipe();
public void addShapedOreRecipe(Identifier resourceLocation, ItemStack outputItemStack, Object... objectInputs) { 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) { public void addShapelessOreRecipe(Identifier resourceLocation, ItemStack outputItemStack, Object... objectInputs) {
throw new UnsupportedOperationException("Needs moving to json");
} }
public ItemStack findMatchingRecipeOutput(CraftingInventory inv, World world) { public ItemStack findMatchingRecipeOutput(CraftingInventory inv, World world) {
throw new UnsupportedOperationException("Needs moving to json"); return ItemStack.EMPTY;
} }
public Recipe findMatchingRecipe(CraftingInventory inv, World world) { public Recipe findMatchingRecipe(CraftingInventory inv, World world) {
throw new UnsupportedOperationException("Needs moving to json"); return null;
} }
} }