Added Missing Multiblock to gui's

This commit is contained in:
Gig 2015-06-26 01:15:44 +01:00
parent 737d7e34a3
commit 759346f388
3 changed files with 21 additions and 0 deletions

View file

@ -1,5 +1,6 @@
package techreborn.client.gui;
import codechicken.lib.gui.GuiDraw;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
@ -44,6 +45,12 @@ public class GuiBlastFurnace extends GuiContainer {
int k = (this.width - this.xSize) / 2;
int l = (this.height - this.ySize) / 2;
this.drawTexturedModalRect(k, l, 0, 0, this.xSize, this.ySize);
if(blastfurnace.getHeat() == 0)
{
GuiDraw.drawTooltipBox(k + 30, l + 50 + 12 - 0, 114, 10);
this.fontRendererObj.drawString("MISSING MULTIBLOCK", k + 38, l + 52 + 12 - 0, -1);
}
}

View file

@ -1,5 +1,6 @@
package techreborn.client.gui;
import codechicken.lib.gui.GuiDraw;
import ic2.core.util.DrawUtil;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.renderer.texture.TextureMap;
@ -42,6 +43,12 @@ public class GuiGrinder extends GuiContainer{
if(j > 0) {
this.drawTexturedModalRect(k + 132, l + 63 + 12 - j, 176, 12 - j, 14, j + 2);
}
if(grinder.getMutliBlock() != true)
{
GuiDraw.drawTooltipBox(k + 30, l + 50 + 12 - j, 114, 10);
this.fontRendererObj.drawString("MISSING MULTIBLOCK", k + 38, l + 52 + 12 - j, -1);
}
if(grinder.tank.getFluidAmount() != 0) {
IIcon fluidIcon = grinder.tank.getFluid().getFluid().getIcon();

View file

@ -1,5 +1,6 @@
package techreborn.client.gui;
import codechicken.lib.gui.GuiDraw;
import net.minecraft.client.gui.GuiButton;
import net.minecraft.client.gui.inventory.GuiContainer;
import net.minecraft.client.resources.I18n;
@ -45,6 +46,12 @@ public class GuiImplosionCompressor extends GuiContainer{
if(this.compresser.crafter.currentTickTime != 0){
j = this.compresser.crafter.currentTickTime * 20 / this.compresser.crafter.currentNeededTicks;
}
if(compresser.getMutliBlock() != true)
{
GuiDraw.drawTooltipBox(k + 30, l + 50 + 12 - j, 114, 10);
this.fontRendererObj.drawString("MISSING MULTIBLOCK", k + 38, l + 52 + 12 - j, -1);
}
this.drawTexturedModalRect(k + 60, l + 38, 176, 14, j + 1, 16);