mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 07:13:28 +01:00
parent
e8cc96b8d8
commit
284cbd897e
2 changed files with 15 additions and 12 deletions
|
@ -48,6 +48,7 @@ public enum ConfigBoolValues{
|
|||
GEN_LUSH_CAVES("Generate Lush Caves", ConfigCategories.WORLD_GEN, true, "Should caves with trees and grass randomly generate underground?"),
|
||||
|
||||
WATER_BOWL("Water Bowl", ConfigCategories.OTHER, true, "Should right-clicking a bowl on water blocks create a water bowl?"),
|
||||
TINY_COAL_STUFF("Tiny Coal", ConfigCategories.OTHER, true, "Should Tiny Coal and Tiny Charcoal be craftable"),
|
||||
|
||||
LASER_RELAY_LOSS("Laser Relay Energy Loss", ConfigCategories.MACHINE_VALUES, true, "If Energy Laser Relays should have energy loss"),
|
||||
|
||||
|
|
|
@ -530,18 +530,20 @@ public final class ItemCrafting{
|
|||
new ItemStack(Items.SIGN)));
|
||||
|
||||
//Tiny Coal
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_COAL.ordinal()),
|
||||
new ItemStack(Items.COAL));
|
||||
recipeTinyCoal = RecipeUtil.lastIRecipe();
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_CHAR.ordinal()),
|
||||
new ItemStack(Items.COAL, 1, 1));
|
||||
recipeTinyChar = RecipeUtil.lastIRecipe();
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.COAL),
|
||||
"CCC", "C C", "CCC",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_COAL.ordinal())));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.COAL, 1, 1),
|
||||
"CCC", "C C", "CCC",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_CHAR.ordinal())));
|
||||
if(ConfigBoolValues.TINY_COAL_STUFF.isEnabled()){
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_COAL.ordinal()),
|
||||
new ItemStack(Items.COAL));
|
||||
recipeTinyCoal = RecipeUtil.lastIRecipe();
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_CHAR.ordinal()),
|
||||
new ItemStack(Items.COAL, 1, 1));
|
||||
recipeTinyChar = RecipeUtil.lastIRecipe();
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.COAL),
|
||||
"CCC", "C C", "CCC",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_COAL.ordinal())));
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.COAL, 1, 1),
|
||||
"CCC", "C C", "CCC",
|
||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_CHAR.ordinal())));
|
||||
}
|
||||
|
||||
//Rice Seeds
|
||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemRiceSeed),
|
||||
|
|
Loading…
Reference in a new issue