diff --git a/src/main/java/com/hbm/inventory/gui/GUIMachineTurbineGas.java b/src/main/java/com/hbm/inventory/gui/GUIMachineTurbineGas.java index e691bffc9..310bc7db0 100644 --- a/src/main/java/com/hbm/inventory/gui/GUIMachineTurbineGas.java +++ b/src/main/java/com/hbm/inventory/gui/GUIMachineTurbineGas.java @@ -202,7 +202,7 @@ public class GUIMachineTurbineGas extends GuiInfoContainer { public void displayStartup() { - if(numberToDisplay < 888888 && turbinegas.counter < 60) { //48 frames needed to complete + if(numberToDisplay < 8888888 && turbinegas.counter < 60) { //48 frames needed to complete digitNumber++; if(digitNumber == 9) { @@ -220,23 +220,23 @@ public class GUIMachineTurbineGas extends GuiInfoContainer { protected void drawPowerMeterDisplay(int number) { //display code - int firstDigitX = 66; + int firstDigitX = 65; int firstDigitY = 62; - int[] digit = new int[6]; + int[] digit = new int[7]; - for(int i = 5; i >= 0; i--) { //creates an array of digits that represent the numbers + for(int i = 6; i >= 0; i--) { //creates an array of digits that represent the numbers digit[i] = (int) (number % 10); number = number / 10; - drawTexturedModalRect(guiLeft + firstDigitX + i * 8, guiTop + 9 + firstDigitY, 194 + digit[i] * 5, 0, 5, 11); + drawTexturedModalRect(guiLeft + firstDigitX + i * 7, guiTop + 9 + firstDigitY, 194 + digit[i] * 5, 0, 5, 11); } int uselessZeros = 0; - for(int i = 0; i < 5; i++) { //counts how much zeros there are before the number, to display 57 instead of 000057 + for(int i = 0; i < 6; i++) { //counts how much zeros there are before the number, to display 57 instead of 000057 if(digit[i] == 0) uselessZeros++; @@ -246,7 +246,7 @@ public class GUIMachineTurbineGas extends GuiInfoContainer { for(int i = 0; i < uselessZeros; i++) { //turns off the useless zeros - drawTexturedModalRect(guiLeft + firstDigitX + i * 8, guiTop + 9 + firstDigitY, 244, 0, 5, 11); + drawTexturedModalRect(guiLeft + firstDigitX + i * 7, guiTop + 9 + firstDigitY, 244, 0, 5, 11); } } diff --git a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineTurbineGas.java b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineTurbineGas.java index 28895add2..7bfb3452a 100644 --- a/src/main/java/com/hbm/tileentity/machine/TileEntityMachineTurbineGas.java +++ b/src/main/java/com/hbm/tileentity/machine/TileEntityMachineTurbineGas.java @@ -70,7 +70,7 @@ public class TileEntityMachineTurbineGas extends TileEntityMachineBase implement fuelMaxCons.put(Fluids.GAS, 50D); // natgas doesn't burn well so it burns faster to compensate fuelMaxCons.put(Fluids.SYNGAS, 10D); // syngas just fucks fuelMaxCons.put(Fluids.OXYHYDROGEN, 100D); // oxyhydrogen is terrible so it needs to burn a ton for the bare minimum - fuelMaxCons.put(Fluids.REFORMGAS, 2.5D); // halved because it's too powerful + fuelMaxCons.put(Fluids.REFORMGAS, 5D); // fuck it we ball // default to 5 if not in list } diff --git a/src/main/resources/assets/hbm/textures/gui/generators/gui_turbinegas.png b/src/main/resources/assets/hbm/textures/gui/generators/gui_turbinegas.png index b429e5ee0..ce9519616 100644 Binary files a/src/main/resources/assets/hbm/textures/gui/generators/gui_turbinegas.png and b/src/main/resources/assets/hbm/textures/gui/generators/gui_turbinegas.png differ