|
1 | 1 | package xbony2.afsu.gui; |
2 | 2 |
|
| 3 | +import ic2.core.util.GuiTooltipHelper; |
| 4 | + |
3 | 5 | import cpw.mods.fml.relauncher.Side; |
4 | 6 | import cpw.mods.fml.relauncher.SideOnly; |
5 | 7 | import ic2.core.GuiIconButton; |
6 | 8 | import ic2.core.IC2; |
7 | | -import ic2.core.util.GuiTooltiphelper; |
8 | 9 | import net.minecraft.client.gui.GuiButton; |
9 | 10 | import net.minecraft.client.gui.inventory.GuiContainer; |
10 | 11 | import net.minecraft.init.Items; |
11 | 12 | import net.minecraft.item.ItemStack; |
12 | 13 | import net.minecraft.util.ResourceLocation; |
13 | 14 | import net.minecraft.util.StatCollector; |
14 | | - |
15 | 15 | import org.lwjgl.opengl.GL11; |
16 | | - |
17 | 16 | import xbony2.afsu.ConfigHandler; |
18 | 17 | import xbony2.afsu.container.ContainerAFSU; |
19 | | -import xbony2.afsu.tileentity.TileEntityAFSU; |
20 | 18 |
|
21 | 19 | @SideOnly(Side.CLIENT) |
22 | 20 | public class GuiAFSU extends GuiContainer { |
@@ -61,9 +59,8 @@ protected void drawGuiContainerForegroundLayer(int par1, int par2){ |
61 | 59 | String output = StatCollector.translateToLocalFormatted("ic2.EUStorage.gui.info.output", container.base.output); |
62 | 60 | this.fontRendererObj.drawString(output, ConfigHandler.AFSUxEnergy3, ConfigHandler.AFSUyEnergy3, ConfigHandler.AFSUTextColor); |
63 | 61 |
|
64 | | - GuiTooltiphelper.drawAreaTooltip(par1 - this.guiLeft, par2 - this.guiTop, (container.base).getredstoneMode(), |
65 | | - ConfigHandler.AFSUToolTipminx, ConfigHandler.AFSUToolTipminy, ConfigHandler.AFSUToolTipmaxx, ConfigHandler.AFSUToolTipmaxy); |
66 | | - |
| 62 | + GuiTooltipHelper.drawAreaTooltip(par1 - this.guiLeft, par2 - this.guiTop, (container.base).getredstoneMode(), ConfigHandler.AFSUToolTipminx, |
| 63 | + ConfigHandler.AFSUToolTipminy, ConfigHandler.AFSUToolTipmaxx, ConfigHandler.AFSUToolTipmaxy); |
67 | 64 | } |
68 | 65 |
|
69 | 66 | @Override |
|
0 commit comments