mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 23:28:35 +01:00
parent
7c22d772a7
commit
5ad0cf0cc0
2 changed files with 4 additions and 4 deletions
|
@ -279,7 +279,7 @@ public final class BlockCrafting{
|
||||||
'B', new ItemStack(Items.REDSTONE),
|
'B', new ItemStack(Items.REDSTONE),
|
||||||
'O', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
'O', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
||||||
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
||||||
'C', new ItemStack(Blocks.CHEST)));
|
'C', "chestWood"));
|
||||||
recipeItemInterface = RecipeUtil.lastIRecipe();
|
recipeItemInterface = RecipeUtil.lastIRecipe();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -459,7 +459,7 @@ public final class BlockCrafting{
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomface),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomface),
|
||||||
" C ", "EBE", " S ",
|
" C ", "EBE", " S ",
|
||||||
'E', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
'E', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
||||||
'C', Blocks.CHEST,
|
'C', "chestWood",
|
||||||
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
||||||
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal())));
|
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal())));
|
||||||
recipePhantomface = RecipeUtil.lastIRecipe();
|
recipePhantomface = RecipeUtil.lastIRecipe();
|
||||||
|
@ -710,7 +710,7 @@ public final class BlockCrafting{
|
||||||
if(ConfigCrafting.GIANT_CHEST.isEnabled()){
|
if(ConfigCrafting.GIANT_CHEST.isEnabled()){
|
||||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGiantChest),
|
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGiantChest),
|
||||||
"CWC", "WDW", "CWC",
|
"CWC", "WDW", "CWC",
|
||||||
'C', new ItemStack(Blocks.CHEST),
|
'C', "chestWood",
|
||||||
'D', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
'D', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
||||||
'W', "plankWood"));
|
'W', "plankWood"));
|
||||||
recipeCrate = RecipeUtil.lastIRecipe();
|
recipeCrate = RecipeUtil.lastIRecipe();
|
||||||
|
|
|
@ -99,7 +99,7 @@ public final class ItemCrafting{
|
||||||
"SLS", "SCS", "LVL",
|
"SLS", "SCS", "LVL",
|
||||||
'S', new ItemStack(Items.STRING),
|
'S', new ItemStack(Items.STRING),
|
||||||
'L', new ItemStack(Items.LEATHER),
|
'L', new ItemStack(Items.LEATHER),
|
||||||
'C', new ItemStack(Blocks.CHEST),
|
'C', "chestWood",
|
||||||
'V', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.COAL.ordinal())));
|
'V', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.COAL.ordinal())));
|
||||||
recipeBag = RecipeUtil.lastIRecipe();
|
recipeBag = RecipeUtil.lastIRecipe();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue