aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-12-21 17:41:25 +0000
committerGitHub <noreply@github.com>2023-12-21 18:41:25 +0100
commit61e647085358777df718d36a927009774506637c (patch)
treecc2d41bb66369a5b7d0d82f128c35093ddcba535 /src/main/java/gtPlusPlus/xmod/gregtech
parentb0653f6fe838aa4207b5ecf083f5d80e8790d9ac (diff)
downloadGT5-Unofficial-61e647085358777df718d36a927009774506637c.tar.gz
GT5-Unofficial-61e647085358777df718d36a927009774506637c.tar.bz2
GT5-Unofficial-61e647085358777df718d36a927009774506637c.zip
Fix superbus UHV recipes and localization (#812)
fix superbus UHV recipes and localization
Diffstat (limited to 'src/main/java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
index 38dab07284..c20546fa28 100644
--- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
+++ b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java
@@ -154,7 +154,7 @@ public class GregtechCustomHatches {
(new GT_MetaTileEntity_Hatch_Muffler_Adv(
30009,
"hatch.muffler.adv.tier.09",
- "Advanced Muffler Hatch (MAX)",
+ "Advanced Muffler Hatch (UHV)",
9)).getStackForm(1L));
}
@@ -190,7 +190,7 @@ public class GregtechCustomHatches {
((IMetaTileEntity) makeInputBus(aStartID++, "hatch.superbus.input.tier.08", "Super Bus (I) (UV)", 8))
.getStackForm(1L));
GregtechItemList.Hatch_SuperBus_Input_MAX.set(
- ((IMetaTileEntity) makeInputBus(aStartID, "hatch.superbus.input.tier.09", "Super Bus (I) (MAX)", 9))
+ ((IMetaTileEntity) makeInputBus(aStartID, "hatch.superbus.input.tier.09", "Super Bus (I) (UHV)", 9))
.getStackForm(1L));
/*
@@ -222,7 +222,7 @@ public class GregtechCustomHatches {
((IMetaTileEntity) makeOutputBus(aStartID++, "hatch.superbus.output.tier.08", "Super Bus (O) (UV)", 8))
.getStackForm(1L));
GregtechItemList.Hatch_SuperBus_Output_MAX.set(
- ((IMetaTileEntity) makeOutputBus(aStartID, "hatch.superbus.output.tier.09", "Super Bus (O) (MAX)", 9))
+ ((IMetaTileEntity) makeOutputBus(aStartID, "hatch.superbus.output.tier.09", "Super Bus (O) (UHV)", 9))
.getStackForm(1L));
}