closes 179

This commit is contained in:
gigabit101 2015-10-09 22:19:38 +01:00
parent e1db33dd8a
commit 891a5f5d19
2 changed files with 4 additions and 6 deletions

View file

@ -36,10 +36,10 @@ public class GuiAesu extends GuiContainer {
this.buttonList.clear();
int k = (this.width - this.xSize) / 2;
int l = (this.height - this.ySize) / 2;
this.buttonList.add(new GuiButton(0, k + 128, l + 5, 20, 20, "++"));
this.buttonList.add(new GuiButton(1, k + 128, l + 5 + 22, 20, 20, "+"));
this.buttonList.add(new GuiButton(2, k + 128, l + 5 + (22 * 2), 20, 20, "-"));
this.buttonList.add(new GuiButton(3, k + 128, l + 5 + (22 * 3), 20, 20, "--"));
this.buttonList.add(new GuiButton(0, k + 128, l + 5, 15, 15, "++"));
this.buttonList.add(new GuiButton(1, k + 128, l + 5 + 20, 15, 15, "+"));
this.buttonList.add(new GuiButton(2, k + 128, l + 5 + (20 * 2), 15, 15, "-"));
this.buttonList.add(new GuiButton(3, k + 128, l + 5 + (20 * 3), 15, 15, "--"));
}
@Override

View file

@ -591,7 +591,6 @@ public class ModItems {
OreDictionary.registerOre("crushedPurifiedTetrahedrite", ItemPurifiedCrushedOre.getPurifiedCrushedOreByName("Tetrahedrite"));
OreDictionary.registerOre("crushedPurifiedTungsten", ItemPurifiedCrushedOre.getPurifiedCrushedOreByName("Tungsten"));
// Purified Crushed Ore
OreDictionary.registerOre("craftingGrinder", ItemParts.getPartByName("diamondGrindingHead"));
OreDictionary.registerOre("craftingGrinder", ItemParts.getPartByName("tungstenGrindingHead"));
OreDictionary.registerOre("circuitMaster", ItemParts.getPartByName("energyFlowCircuit"));
@ -599,7 +598,6 @@ public class ModItems {
OreDictionary.registerOre("circuitData", ItemParts.getPartByName("dataStorageCircuit"));
OreDictionary.registerOre("craftingSuperconductor", ItemParts.getPartByName("superconductor"));
OreDictionary.registerOre("batteryUltimate", ItemParts.getPartByName("diamondGrindingHead"));
OreDictionary.registerOre("gearTungstensteel", ItemParts.getPartByName("tungstensteelGear"));
OreDictionary.registerOre("blockLapis", ItemParts.getPartByName("lazuriteChunk"));
}