Fix lots of issues

This commit is contained in:
Prospector 2016-03-28 19:47:00 -07:00
parent 620bbfc1df
commit cec54aa0c8
16 changed files with 1009 additions and 1461 deletions

View file

@ -8,29 +8,29 @@ import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.translation.I18n;
import reborncore.common.packets.PacketHandler;
import reborncore.common.powerSystem.PowerSystem;
import techreborn.client.container.ContainerAesu;
import techreborn.client.container.ContainerAESU;
import techreborn.packets.PacketAesu;
import techreborn.tiles.TileAesu;
import java.awt.*;
import java.io.IOException;
public class GuiAesu extends GuiContainer
public class GuiAESU extends GuiContainer
{
private static final ResourceLocation texture = new ResourceLocation("techreborn", "textures/gui/aesu.png");
TileAesu aesu;
ContainerAesu containerAesu;
ContainerAESU containerAesu;
public GuiAesu(EntityPlayer player, TileAesu tileaesu)
public GuiAESU(EntityPlayer player, TileAesu tileaesu)
{
super(new ContainerAesu(tileaesu, player));
super(new ContainerAESU(tileaesu, player));
this.xSize = 176;
this.ySize = 197;
aesu = tileaesu;
this.containerAesu = (ContainerAesu) this.inventorySlots;
this.containerAesu = (ContainerAESU) this.inventorySlots;
}
@Override

View file

@ -28,7 +28,7 @@ public class GuiIDSU extends GuiContainer
{
super(new ContainerIDSU(tileIDSU, player));
this.xSize = 176;
this.ySize = 165;
this.ySize = 197;
idsu = tileIDSU;
this.containerIDSU = (ContainerIDSU) this.inventorySlots;
}

View file

@ -8,25 +8,25 @@ import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.ResourceLocation;
import net.minecraft.util.text.translation.I18n;
import reborncore.common.powerSystem.PowerSystem;
import techreborn.client.container.ContainerLesu;
import techreborn.client.container.ContainerLESU;
import techreborn.tiles.lesu.TileLesu;
public class GuiLesu extends GuiContainer
public class GuiLESU extends GuiContainer
{
private static final ResourceLocation texture = new ResourceLocation("techreborn", "textures/gui/aesu.png");
TileLesu aesu;
ContainerLesu containerLesu;
ContainerLESU containerLesu;
public GuiLesu(EntityPlayer player, TileLesu tileaesu)
public GuiLESU(EntityPlayer player, TileLesu tileaesu)
{
super(new ContainerLesu(tileaesu, player));
super(new ContainerLESU(tileaesu, player));
this.xSize = 176;
this.ySize = 165;
this.ySize = 197;
aesu = tileaesu;
this.containerLesu = (ContainerLesu) this.inventorySlots;
this.containerLesu = (ContainerLESU) this.inventorySlots;
}
@Override