mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +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?"),
|
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?"),
|
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"),
|
LASER_RELAY_LOSS("Laser Relay Energy Loss", ConfigCategories.MACHINE_VALUES, true, "If Energy Laser Relays should have energy loss"),
|
||||||
|
|
||||||
|
|
|
@ -530,6 +530,7 @@ public final class ItemCrafting{
|
||||||
new ItemStack(Items.SIGN)));
|
new ItemStack(Items.SIGN)));
|
||||||
|
|
||||||
//Tiny Coal
|
//Tiny Coal
|
||||||
|
if(ConfigBoolValues.TINY_COAL_STUFF.isEnabled()){
|
||||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_COAL.ordinal()),
|
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemMisc, 8, TheMiscItems.TINY_COAL.ordinal()),
|
||||||
new ItemStack(Items.COAL));
|
new ItemStack(Items.COAL));
|
||||||
recipeTinyCoal = RecipeUtil.lastIRecipe();
|
recipeTinyCoal = RecipeUtil.lastIRecipe();
|
||||||
|
@ -542,6 +543,7 @@ public final class ItemCrafting{
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.COAL, 1, 1),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(Items.COAL, 1, 1),
|
||||||
"CCC", "C C", "CCC",
|
"CCC", "C C", "CCC",
|
||||||
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_CHAR.ordinal())));
|
'C', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.TINY_CHAR.ordinal())));
|
||||||
|
}
|
||||||
|
|
||||||
//Rice Seeds
|
//Rice Seeds
|
||||||
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemRiceSeed),
|
GameRegistry.addShapelessRecipe(new ItemStack(InitItems.itemRiceSeed),
|
||||||
|
|
Loading…
Reference in a new issue