aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/goodgenerator/blocks
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/goodgenerator/blocks')
-rw-r--r--src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java b/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java
index f019f8f7cd..1749b07df8 100644
--- a/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java
+++ b/src/main/java/goodgenerator/blocks/tileEntity/AntimatterForge.java
@@ -229,8 +229,15 @@ public class AntimatterForge extends MTEExtendedPowerMultiBlockBase<AntimatterFo
+ EnumChatFormatting.AQUA
+ String.valueOf(this.baseSkew)
+ EnumChatFormatting.GRAY
- + ", 1) of antimatter per cycle, consuming equal amounts of Protomatter")
- .addInfo("The change can be negative! (N = Normal Distribution with mean of 0.2)")
+ + ", 0.25) of antimatter per cycle, consuming equal amounts of Protomatter")
+ .addInfo(
+ "The change is split between the 16 Antimatter Hatches, sampled from N(" + EnumChatFormatting.AQUA
+ + String.valueOf(this.baseSkew)
+ + EnumChatFormatting.GRAY
+ + ", 1) (Gaussian distribution with mean of "
+ + String.valueOf(this.baseSkew)
+ + ")")
+ .addInfo("The total change can be negative!")
.addSeparator()
.addInfo("Can be supplied with stabilization fluids to improve antimatter generation")
.addInfo(
@@ -299,6 +306,7 @@ public class AntimatterForge extends MTEExtendedPowerMultiBlockBase<AntimatterFo
"2. Depleted Naquadah Fuel Mk VI - Distribution skew " + EnumChatFormatting.AQUA
+ "+0.10"
+ EnumChatFormatting.GRAY)
+ .addInfo("Each stabilization can only use one of the fluids at a time")
.addSeparator()
.addCasingInfoMin("Antimatter Containment Casing", 512, false)
.addCasingInfoMin("Magnetic Flux Casing", 2274, false)