use of gregtech.common.crafting.FacadeRecipe in project GregTech by GregTechCE.
the class CraftingRecipeLoader method registerFacadeRecipe.
private static void registerFacadeRecipe(Material material, int facadeAmount) {
OreIngredient ingredient = new OreIngredient(new UnificationEntry(OrePrefix.plate, material).toString());
ForgeRegistries.RECIPES.register(new FacadeRecipe(null, ingredient, facadeAmount).setRegistryName("facade_" + material));
}
Aggregations