this.fontRenderer.drawString(StatCollector.translateToLocal("container.voltage") + ": " + displayVoltage, 65, 55, 4210752);
if (this.tileEntity.getStackInSlot(0) != null)
{
ItemStack fuseStack = this.tileEntity.getStackInSlot(0);
IItemFuse fuse = (IItemFuse) fuseStack.getItem();
this.fontRenderer.drawString(this.tileEntity.getStackInSlot(0).getDisplayName(), 30, 18, 4210752);
this.fontRenderer.drawString(StatCollector.translateToLocal(fuse.getUnlocalizedName(fuseStack)), 30, 18, 4210752);
}
}