}
private IIcon getPowerTapIcon(IBlockAccess blockAccess, int x, int y, int z, int side) {
TileEntity te = blockAccess.getTileEntity(x, y, z);
if(te instanceof TileEntityReactorPowerTap) {
TileEntityReactorPowerTap tap = (TileEntityReactorPowerTap)te;
if(!isReactorAssembled(tap) || isOutwardsSide(tap, side)) {
if(tap.hasEnergyConnection()) {
return _icons[METADATA_POWERTAP][TAP_CONNECTED];
}
else {
return _icons[METADATA_POWERTAP][TAP_DISCONNECTED];
}