aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/blocks
diff options
context:
space:
mode:
authorSampsa <69092953+S4mpsa@users.noreply.github.com>2024-08-09 13:42:41 +0300
committerGitHub <noreply@github.com>2024-08-09 17:42:41 +0700
commit9ae36e785e756bb263453174715a1c7aff9bf1a3 (patch)
treec06295a057a44964ffd5f91d4d6d896d6a87297f /src/main/java/goodgenerator/blocks
parentf10b885ccce496c60651d3acdf80e5036c0ef354 (diff)
downloadGT5-Unofficial-9ae36e785e756bb263453174715a1c7aff9bf1a3.tar.gz
GT5-Unofficial-9ae36e785e756bb263453174715a1c7aff9bf1a3.tar.bz2
GT5-Unofficial-9ae36e785e756bb263453174715a1c7aff9bf1a3.zip
Buff later naqfuels and misc changes (#2847)
* Buff later naqfuels and misc changes * Buff Mk5 alternate recipe speed
Diffstat (limited to 'src/main/java/goodgenerator/blocks')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/FuelRefineFactory.java8
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/MultiNqGenerator.java13
2 files changed, 9 insertions, 12 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/FuelRefineFactory.java b/src/main/java/goodgenerator/blocks/tileEntity/FuelRefineFactory.java
index d8868bec74..8d1720c8f2 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/FuelRefineFactory.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/FuelRefineFactory.java
@@ -191,10 +191,10 @@ public class FuelRefineFactory extends GT_MetaTileEntity_TooltipMultiBlockBase_E
.addInfo(BLUE_PRINT_INFO)
.addSeparator()
.beginStructureBlock(3, 15, 15, false)
- .addInputHatch("The casings adjoin the field restriction glass.")
- .addInputBus("The casings adjoin the field restriction glass.", 1)
- .addOutputHatch("The casings adjoin the field restriction glass.", 1)
- .addEnergyHatch("The casings adjoin the field restriction glass.", 1)
+ .addInputHatch("The casings adjacent to field restriction glass.")
+ .addInputBus("The casings adjacent to field restriction glass.", 1)
+ .addOutputHatch("The casings adjacent to field restriction glass.", 1)
+ .addEnergyHatch("The casings adjacent to field restriction glass.", 1)
.toolTipFinisher("Good Generator");
return tt;
}
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/MultiNqGenerator.java b/src/main/java/goodgenerator/blocks/tileEntity/MultiNqGenerator.java
index cd53c48974..19b04637fe 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/MultiNqGenerator.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/MultiNqGenerator.java
@@ -419,14 +419,11 @@ public class MultiNqGenerator extends GT_MetaTileEntity_TooltipMultiBlockBase_EM
+ " ONE"
+ EnumChatFormatting.GRAY
+ " type of fuel in hatches!")
- .addInfo("Can consume 1000L/s of coolant to increase efficiency:")
- .addInfo(
- String.format(
- "IC2 Coolant %d%%, Super Coolant %d%%, Cryotheum %d%%, Tachyon Rich Temporal Fluid %d%%",
- CoolantEfficiency[3],
- CoolantEfficiency[2],
- CoolantEfficiency[1],
- CoolantEfficiency[0]))
+ .addInfo("Can consume coolants to increase efficiency:")
+ .addInfo(String.format("IC2 Coolant | %d%% | 1000 L/s ", CoolantEfficiency[3]))
+ .addInfo(String.format("Super Coolant | %d%% | 1000 L/s", CoolantEfficiency[2]))
+ .addInfo(String.format("Cryotheum | %d%% | 1000 L/s", CoolantEfficiency[1]))
+ .addInfo(String.format("Tachyon Rich Temporal Fluid | %d%% | 20 L/s", CoolantEfficiency[0]))
.addInfo("Can consume excited liquid to increase the output power and fuel usage:")
.addInfo(String.format("Molten Caesium | %dx power | 180 L/s ", ExcitedLiquidCoe[4]))
.addInfo(String.format("Molten Uranium-235 | %dx power | 180 L/s", ExcitedLiquidCoe[3]))