From fc2cd3bdbd9d2a5bc370746bb54bcba3a23ca5c4 Mon Sep 17 00:00:00 2001 From: mDiyo Date: Mon, 23 Sep 2013 06:14:27 -0700 Subject: [PATCH] Prevent checking in TContent --- src/tconstruct/library/blocks/AdaptiveInventoryLogic.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/tconstruct/library/blocks/AdaptiveInventoryLogic.java b/src/tconstruct/library/blocks/AdaptiveInventoryLogic.java index 61445d6b9b6..ac753e36f2b 100644 --- a/src/tconstruct/library/blocks/AdaptiveInventoryLogic.java +++ b/src/tconstruct/library/blocks/AdaptiveInventoryLogic.java @@ -8,7 +8,6 @@ import net.minecraft.entity.item.EntityItem; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; -import tconstruct.common.TContent; import tconstruct.library.util.CoordTuple; import tconstruct.library.util.IFacingLogic; import tconstruct.library.util.IMasterLogic; @@ -250,7 +249,7 @@ protected boolean recurseLayer (int x, int y, int z) if (!blockCoords.contains(coord)) { int blockID = worldObj.getBlockId(x + xPos, y, z + zPos); - if (blockID == TContent.smeltery.blockID) //Needs different checking + if (blockID == Block.stoneBrick.blockID) //TContent.smeltery.blockID, Needs different checking { bricks++; blockCoords.add(coord);