use of icbm.classic.api.tile.multiblock.IMultiTile in project ICBM-Classic by BuiltBrokenModding.
the class BlockMultiblock method breakBlock.
@Override
public void breakBlock(World world, BlockPos pos, IBlockState state) {
IMultiTile tile = getTile(world, pos);
if (tile != null && tile.getHost() != null) {
tile.getHost().onMultiTileBroken(tile, null, true);
}
super.breakBlock(world, pos, state);
}
Aggregations