diff --git a/src/minecraft/biomesoplenty/configuration/BOPCrafting.java b/src/minecraft/biomesoplenty/configuration/BOPCrafting.java index 8aa85fe00..5297e877f 100644 --- a/src/minecraft/biomesoplenty/configuration/BOPCrafting.java +++ b/src/minecraft/biomesoplenty/configuration/BOPCrafting.java @@ -43,6 +43,12 @@ public class BOPCrafting GameRegistry.addRecipe(new ItemStack(Blocks.stoneSingleSlab.get(), 6, 2), new Object[] {"RRR", 'R', Blocks.mudBrick.get()}); GameRegistry.addRecipe(new ItemStack(Blocks.mudBricksStairs.get(), 4), new Object[] {" R", " RR", "RRR", 'R', Blocks.mudBrick.get()}); GameRegistry.addRecipe(new ItemStack(Blocks.mudBricksStairs.get(), 4), new Object[] {"R ", "RR ", "RRR", 'R', Blocks.mudBrick.get()}); + GameRegistry.addRecipe(new ItemStack(Blocks.holyCobbleStairs.get(), 4), new Object[] {" R", " RR", "RRR", 'R', new ItemStack(Blocks.holyStone.get(),1,1)}); + GameRegistry.addRecipe(new ItemStack(Blocks.holyCobbleStairs.get(), 4), new Object[] {"R ", "RR ", "RRR", 'R', new ItemStack(Blocks.holyStone.get(),1,1)}); + GameRegistry.addRecipe(new ItemStack(Blocks.holyBricksStairs.get(), 4), new Object[] {" R", " RR", "RRR", 'R', new ItemStack(Blocks.holyStone.get(),1,2)}); + GameRegistry.addRecipe(new ItemStack(Blocks.holyBricksStairs.get(), 4), new Object[] {"R ", "RR ", "RRR", 'R', new ItemStack(Blocks.holyStone.get(),1,2)}); + GameRegistry.addRecipe(new ItemStack(Blocks.stoneSingleSlab.get(), 6, 3), new Object[] {"RRR", 'R', new ItemStack(Blocks.holyStone.get(),1,1)}); + GameRegistry.addRecipe(new ItemStack(Blocks.stoneSingleSlab.get(), 6, 4), new Object[] {"RRR", 'R', new ItemStack(Blocks.holyStone.get(),1,2)}); //Redwood GameRegistry.addShapelessRecipe(new ItemStack(Blocks.planks.get(), 4, 8), new Object[] {new ItemStack(Blocks.logs3.get(),1,0)}); @@ -105,6 +111,7 @@ public class BOPCrafting GameRegistry.addRecipe(new ItemStack(Blocks.holyStairs.get(), 4), new Object[] {"R ", "RR ", "RRR", 'R', new ItemStack(Blocks.woodenDoubleSlab1.get(),1,4)}); GameRegistry.addRecipe(new ItemStack(Blocks.redRock.get(), 4, 2), new Object[] {"RR", "RR", 'R', new ItemStack(Blocks.redRock.get(),1,0)}); + GameRegistry.addRecipe(new ItemStack(Blocks.holyStone.get(), 4, 2), new Object[] {"RR", "RR", 'R', new ItemStack(Blocks.holyStone.get(),1,0)}); GameRegistry.addRecipe(new ItemStack(Block.cloth, 1, 0), new Object[] {"CCC", "CCC", "CCC", 'C', new ItemStack(Blocks.plants.get(), 1, 7)}); GameRegistry.addRecipe(new ItemStack(Item.coal, 1), new Object[] {"AAA", "AAA", "AAA", 'A', new ItemStack(Items.miscItems.get(), 1, 1)}); diff --git a/src/minecraft/mods/BiomesOPlenty/textures/blocks/amethystore.png b/src/minecraft/mods/BiomesOPlenty/textures/blocks/amethystore.png index 6024f8f5d..ec9eca002 100644 Binary files a/src/minecraft/mods/BiomesOPlenty/textures/blocks/amethystore.png and b/src/minecraft/mods/BiomesOPlenty/textures/blocks/amethystore.png differ diff --git a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holybrick.png b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holybrick.png index caaaf1316..5cb0569ce 100644 Binary files a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holybrick.png and b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holybrick.png differ diff --git a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holycobble.png b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holycobble.png index 370cacc88..015681d96 100644 Binary files a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holycobble.png and b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holycobble.png differ diff --git a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holysand.png b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holysand.png deleted file mode 100644 index 3feb5c689..000000000 Binary files a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holysand.png and /dev/null differ diff --git a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holystone.png b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holystone.png index 56a37ba3d..caa4b71f9 100644 Binary files a/src/minecraft/mods/BiomesOPlenty/textures/blocks/holystone.png and b/src/minecraft/mods/BiomesOPlenty/textures/blocks/holystone.png differ