Skip to content

Commit

Permalink
Compile fixes for 1.7.10
Browse files Browse the repository at this point in the history
  • Loading branch information
squeek502 committed Jul 7, 2014
1 parent 7afb01a commit 4a8ca08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/smeltery/blocks/SearedBlock.java
Expand Up @@ -320,7 +320,7 @@ public AxisAlignedBB getCollisionBoundingBoxFromPool (World world, int x, int y,
}
else
{
TileEntity tile = world.getBlockTileEntity(x, y, z);
TileEntity tile = world.getTileEntity(x, y, z);
if (tile != null && tile instanceof FaucetLogic)
{
FaucetLogic logic = (FaucetLogic) tile;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/tconstruct/tools/logic/FurnaceLogic.java
Expand Up @@ -404,6 +404,6 @@ public boolean canInsertItem(int par1, ItemStack par2ItemStack, int par3)
@Override
public boolean canExtractItem(int par1, ItemStack par2ItemStack, int par3)
{
return par3 != 0 || par1 != 1 || par2ItemStack.itemID == Item.bucketEmpty.itemID;
return par3 != 0 || par1 != 1 || par2ItemStack.getItem() == Items.bucket;
}
}

0 comments on commit 4a8ca08

Please sign in to comment.