Skip to content

Commit

Permalink
Prevent checking in TContent
Browse files Browse the repository at this point in the history
  • Loading branch information
mDiyo committed Sep 23, 2013
1 parent 8ac30c5 commit fc2cd3b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/tconstruct/library/blocks/AdaptiveInventoryLogic.java
Expand Up @@ -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;
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit fc2cd3b

Please sign in to comment.