diff --git a/resources/assets/resonantinduction/textures/gui/gui_multimeter.png b/resources/assets/resonantinduction/textures/gui/gui_multimeter.png index e9a16fbe..9220755d 100644 Binary files a/resources/assets/resonantinduction/textures/gui/gui_multimeter.png and b/resources/assets/resonantinduction/textures/gui/gui_multimeter.png differ diff --git a/src/resonantinduction/battery/TileEntityBattery.java b/src/resonantinduction/battery/TileEntityBattery.java index 0ecdc30a..65a12785 100644 --- a/src/resonantinduction/battery/TileEntityBattery.java +++ b/src/resonantinduction/battery/TileEntityBattery.java @@ -95,7 +95,6 @@ public class TileEntityBattery extends TileEntityBase implements IPacketReceiver for(int tagCount = 0; tagCount < tagList.tagCount(); tagCount++) { - System.out.println("Read"); NBTTagCompound tagCompound = (NBTTagCompound)tagList.tagAt(tagCount); int slotID = tagCompound.getInteger("Slot"); structure.inventory.add(slotID, ItemStack.loadItemStackFromNBT(tagCompound)); @@ -143,7 +142,6 @@ public class TileEntityBattery extends TileEntityBase implements IPacketReceiver { if(structure.inventory.get(slotCount) != null) { - System.out.println("Save"); NBTTagCompound tagCompound = new NBTTagCompound(); tagCompound.setInteger("Slot", slotCount); structure.inventory.get(slotCount).writeToNBT(tagCompound); diff --git a/src/resonantinduction/contractor/TileEntityEMContractor.java b/src/resonantinduction/contractor/TileEntityEMContractor.java index 37a63bee..8ae64fce 100644 --- a/src/resonantinduction/contractor/TileEntityEMContractor.java +++ b/src/resonantinduction/contractor/TileEntityEMContractor.java @@ -35,7 +35,6 @@ public class TileEntityEMContractor extends TileEntityBase implements IPacketRec public static int PUSH_DELAY = 5; public static double MAX_SPEED = .2; public static double ACCELERATION = .02; - public static float ENERGY_USAGE = .005F; private ForgeDirection facing = ForgeDirection.UP; diff --git a/src/resonantinduction/multimeter/GuiMultimeter.java b/src/resonantinduction/multimeter/GuiMultimeter.java index d56e532b..0e1bdd7b 100644 --- a/src/resonantinduction/multimeter/GuiMultimeter.java +++ b/src/resonantinduction/multimeter/GuiMultimeter.java @@ -95,9 +95,8 @@ public class GuiMultimeter extends GuiContainer GL11.glColor4f(1, 1, 1, 1); this.drawTexturedModalRect(this.containerWidth, this.containerHeight, 0, 0, this.xSize, this.ySize); - int length = (int) (this.tileEntity.getDetectedEnergy() / this.tileEntity.getPeak()) * 117; - // length = 177; - this.drawTexturedModalRect(this.containerWidth + 13, this.containerHeight + 133 - length, 176, 117 - length, 30, length); + int length = (int) (this.tileEntity.getDetectedEnergy() / this.tileEntity.getPeak()) * 115; + this.drawTexturedModalRect(this.containerWidth + 14, this.containerHeight + 126 - length, 176, 115 - length, 6, length); } @Override