Skip to content

Commit

Permalink
remove accidentally included method
Browse files Browse the repository at this point in the history
  • Loading branch information
LepkoQQ committed Apr 6, 2014
1 parent 15a9af6 commit c4e0494
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/main/java/tconstruct/blocks/SearedBlock.java
Expand Up @@ -380,18 +380,6 @@ public void onNeighborBlockChange (World world, int x, int y, int z, Block neigh
}
}

@Override
public boolean canPlaceBlockOnSide (World world, int x, int y, int z, int side)
{
ForgeDirection dir = ForgeDirection.getOrientation(side ^ 1);
TileEntity tile = world.getTileEntity(x + dir.offsetX, y + dir.offsetY, z + dir.offsetZ);
if (tile instanceof IFluidHandler)
{
return true;
}
return false;
}

@Override
public TileEntity createNewTileEntity (World world, int metadata)
{
Expand Down

0 comments on commit c4e0494

Please sign in to comment.