Dont crash with the rolling machine, wont work just yet.
This commit is contained in:
parent
2bda5c6ce4
commit
a5bbb602f7
1 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue