@Override
public int isProvidingStrongPower(IBlockAccess world, int x, int y, int z, int side)
{
if (world.getBlockTileEntity(x, y, z) instanceof TileEntityRedstonePaintedWire)
{
TileEntityRedstonePaintedWire te = (TileEntityRedstonePaintedWire) world.getBlockTileEntity(x, y, z);
return te.getRsLevel();
}
return 0;
}