From 61e647085358777df718d36a927009774506637c Mon Sep 17 00:00:00 2001 From: chochem <40274384+chochem@users.noreply.github.com> Date: Thu, 21 Dec 2023 17:41:25 +0000 Subject: Fix superbus UHV recipes and localization (#812) fix superbus UHV recipes and localization --- .../xmod/gregtech/registration/gregtech/GregtechCustomHatches.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/main/java/gtPlusPlus/xmod/gregtech/registration') 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)); } -- cgit