From b4689906b72c2b74cf6bc7b18f99bd29811835b3 Mon Sep 17 00:00:00 2001 From: Mohammad-Ali Minaie Date: Thu, 20 Apr 2017 06:08:19 -0400 Subject: [PATCH] fixed crafting issue but anvil and forge rendering is broken --- .../nmd/primal/forgecraft/init/ModBlocks.java | 36 +++++++++---------- 1 file changed, 18 insertions(+), 18 deletions(-) diff --git a/1.11/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java b/1.11/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java index 3c4f78b2..3466b69c 100644 --- a/1.11/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java +++ b/1.11/src/main/java/nmd/primal/forgecraft/init/ModBlocks.java @@ -230,15 +230,15 @@ public class ModBlocks { ) { player.swingArm(hand); world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2); - tile.setSlotStack(6, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(7, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(8, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(11, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(12, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(13, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(16, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(17, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(18, new ItemStack(ModItems.ironchunkhot, 1)); + tile.setSlotStack(6, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(7, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(8, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(11, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(12, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(13, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(16, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(17, new ItemStack(ModItems.ironcleanchunkhot, 1)); + tile.setSlotStack(18, new ItemStack(ModItems.ironcleanchunkhot, 1)); world.playEvent(1031, pos, 0); return true; } @@ -282,15 +282,15 @@ public class ModBlocks { ) { player.swingArm(hand); world.setBlockState(pos, Blocks.AIR.getDefaultState(), 2); - tile.setSlotStack(6, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(7, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(8, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(11, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(12, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(13, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(16, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(17, new ItemStack(ModItems.ironchunkhot, 1)); - tile.setSlotStack(18, new ItemStack(ModItems.ironchunkhot, 1)); + tile.setSlotStack(6, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(7, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(8, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(11, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(12, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(13, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(16, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(17, new ItemStack(ModItems.steelchunkhot, 1)); + tile.setSlotStack(18, new ItemStack(ModItems.steelchunkhot, 1)); world.playEvent(1031, pos, 0); return true; }