File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/gregtech/common/metatileentities Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -785,8 +785,8 @@ public static void init() {
785785 // MISC MTE's START: IDs 1150-2000
786786
787787 // Import/Export Buses/Hatches, IDs 1150-1209
788- endPos = GregTechAPI .isHighTier () ? ITEM_IMPORT_BUS .length : GTValues .UHV ;
789- for (int i = 0 ; i <= endPos ; i ++) {
788+ endPos = GregTechAPI .isHighTier () ? ITEM_IMPORT_BUS .length : GTValues .UHV + 1 ;
789+ for (int i = 0 ; i < endPos ; i ++) {
790790 String voltageName = GTValues .VN [i ].toLowerCase ();
791791 ITEM_IMPORT_BUS [i ] = new MetaTileEntityItemBus (gregtechId ("item_bus.import." + voltageName ), i , false );
792792 ITEM_EXPORT_BUS [i ] = new MetaTileEntityItemBus (gregtechId ("item_bus.export." + voltageName ), i , true );
You can’t perform that action at this time.
0 commit comments