mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
Made the White and Green wall not disableable in the config
They look nice.
This commit is contained in:
parent
c10a91da29
commit
2c07e6f326
1 changed files with 5 additions and 4 deletions
|
@ -89,12 +89,13 @@ public class LensNoneRecipeHandler{
|
||||||
recipeSoulSand = Util.GetRecipes.lastReconstructorRecipe();
|
recipeSoulSand = Util.GetRecipes.lastReconstructorRecipe();
|
||||||
addRecipe(new ItemStack(Items.rotten_flesh), new ItemStack(Items.leather), 8000);
|
addRecipe(new ItemStack(Items.rotten_flesh), new ItemStack(Items.leather), 8000);
|
||||||
recipeLeather = Util.GetRecipes.lastReconstructorRecipe();
|
recipeLeather = Util.GetRecipes.lastReconstructorRecipe();
|
||||||
|
}
|
||||||
|
|
||||||
addRecipe(new ItemStack(Blocks.quartz_block), new ItemStack(InitBlocks.blockTestifiBucksWhiteWall), 10);
|
addRecipe(new ItemStack(Blocks.quartz_block), new ItemStack(InitBlocks.blockTestifiBucksWhiteWall), 10);
|
||||||
recipeWhiteWall = Util.GetRecipes.lastReconstructorRecipe();
|
recipeWhiteWall = Util.GetRecipes.lastReconstructorRecipe();
|
||||||
addRecipe(new ItemStack(Blocks.quartz_block, 1, 1), new ItemStack(InitBlocks.blockTestifiBucksGreenWall), 10);
|
addRecipe(new ItemStack(Blocks.quartz_block, 1, 1), new ItemStack(InitBlocks.blockTestifiBucksGreenWall), 10);
|
||||||
recipeGreenWall = Util.GetRecipes.lastReconstructorRecipe();
|
recipeGreenWall = Util.GetRecipes.lastReconstructorRecipe();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
public static void addRecipe(ItemStack input, ItemStack output, int energyUse){
|
public static void addRecipe(ItemStack input, ItemStack output, int energyUse){
|
||||||
recipes.add(new Recipe(input, output, energyUse));
|
recipes.add(new Recipe(input, output, energyUse));
|
||||||
|
|
Loading…
Reference in a new issue