From be315d3eb3aea5a9300fd60145739ba5a5beeac6 Mon Sep 17 00:00:00 2001 From: chochem <40274384+chochem@users.noreply.github.com> Date: Tue, 12 Dec 2023 09:05:34 +0000 Subject: fix id shift of super busses (#798) fix id shift --- .../xmod/gregtech/registration/gregtech/GregtechCustomHatches.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 f8c36eb37b..38dab07284 100644 --- a/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java +++ b/src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java @@ -196,7 +196,7 @@ public class GregtechCustomHatches { /* * Super Output Busses */ - aStartID = 30031; + aStartID = 30032; GregtechItemList.Hatch_SuperBus_Output_LV.set( ((IMetaTileEntity) makeOutputBus(aStartID++, "hatch.superbus.output.tier.01", "Super Bus (O) (LV)", 1)) .getStackForm(1L)); -- cgit