diff options
author | chochem <40274384+chochem@users.noreply.github.com> | 2023-12-12 09:05:34 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-12 10:05:34 +0100 |
commit | be315d3eb3aea5a9300fd60145739ba5a5beeac6 (patch) | |
tree | 4634a4e20869b22f65bc6e3b9bbd46fbf6fa64b9 | |
parent | 2bfa13a6ba746f65534af5f8c1b4c2485e73efc1 (diff) | |
download | GT5-Unofficial-be315d3eb3aea5a9300fd60145739ba5a5beeac6.tar.gz GT5-Unofficial-be315d3eb3aea5a9300fd60145739ba5a5beeac6.tar.bz2 GT5-Unofficial-be315d3eb3aea5a9300fd60145739ba5a5beeac6.zip |
fix id shift of super busses (#798)
fix id shift
-rw-r--r-- | src/main/java/gtPlusPlus/xmod/gregtech/registration/gregtech/GregtechCustomHatches.java | 2 |
1 files changed, 1 insertions, 1 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 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)); |