mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-22 15:18:34 +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),
|
||||
'O', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL.ordinal()),
|
||||
'R', new ItemStack(InitItems.itemCrystal, 1, TheCrystals.REDSTONE.ordinal()),
|
||||
'C', new ItemStack(Blocks.CHEST)));
|
||||
'C', "chestWood"));
|
||||
recipeItemInterface = RecipeUtil.lastIRecipe();
|
||||
}
|
||||
|
||||
|
@ -459,7 +459,7 @@ public final class BlockCrafting{
|
|||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockPhantomface),
|
||||
" C ", "EBE", " S ",
|
||||
'E', new ItemStack(InitItems.itemCrystalEmpowered, 1, TheCrystals.DIAMOND.ordinal()),
|
||||
'C', Blocks.CHEST,
|
||||
'C', "chestWood",
|
||||
'S', new ItemStack(InitItems.itemMisc, 1, TheMiscItems.COIL_ADVANCED.ordinal()),
|
||||
'B', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.ENDERPEARL_BLOCK.ordinal())));
|
||||
recipePhantomface = RecipeUtil.lastIRecipe();
|
||||
|
@ -710,7 +710,7 @@ public final class BlockCrafting{
|
|||
if(ConfigCrafting.GIANT_CHEST.isEnabled()){
|
||||
GameRegistry.addRecipe(new ShapedOreRecipe(new ItemStack(InitBlocks.blockGiantChest),
|
||||
"CWC", "WDW", "CWC",
|
||||
'C', new ItemStack(Blocks.CHEST),
|
||||
'C', "chestWood",
|
||||
'D', new ItemStack(InitBlocks.blockMisc, 1, TheMiscBlocks.WOOD_CASING.ordinal()),
|
||||
'W', "plankWood"));
|
||||
recipeCrate = RecipeUtil.lastIRecipe();
|
||||
|
|
|
@ -99,7 +99,7 @@ public final class ItemCrafting{
|
|||
"SLS", "SCS", "LVL",
|
||||
'S', new ItemStack(Items.STRING),
|
||||
'L', new ItemStack(Items.LEATHER),
|
||||
'C', new ItemStack(Blocks.CHEST),
|
||||
'C', "chestWood",
|
||||
'V', new ItemStack(InitBlocks.blockCrystal, 1, TheCrystals.COAL.ordinal())));
|
||||
recipeBag = RecipeUtil.lastIRecipe();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue