aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/nei
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/gregtech/nei')
-rw-r--r--src/main/java/gregtech/nei/FusionSpecialValueFormatter.java8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/main/java/gregtech/nei/FusionSpecialValueFormatter.java b/src/main/java/gregtech/nei/FusionSpecialValueFormatter.java
index 0d5517b6f0..2129fd7233 100644
--- a/src/main/java/gregtech/nei/FusionSpecialValueFormatter.java
+++ b/src/main/java/gregtech/nei/FusionSpecialValueFormatter.java
@@ -28,8 +28,10 @@ public class FusionSpecialValueFormatter implements INEISpecialInfoFormatter {
tier = 2;
} else if (startupPower <= 40 * M * 16) {
tier = 3;
- } else {
+ } else if (startupPower <= 80 * M * 16) {
tier = 4;
+ } else {
+ tier = 5;
}
if (voltage <= GT_Values.V[6]) {
@@ -38,8 +40,10 @@ public class FusionSpecialValueFormatter implements INEISpecialInfoFormatter {
tier = Math.max(tier, 2);
} else if (voltage <= GT_Values.V[8]) {
tier = Math.max(tier, 3);
+ } else if (voltage <= GT_Values.V[9]) {
+ tier = Math.max(tier, 4);
} else {
- tier = 4;
+ tier = 5;
}
return tier;
}