Skip to content

Commit 33b4779

Browse files
Fix preview structure for fusion reactor (GregTechCEu#1598)
Co-authored-by: screret <68943070+screret@users.noreply.github.com>
1 parent 3c88470 commit 33b4779

1 file changed

Lines changed: 17 additions & 17 deletions

File tree

src/main/java/com/gregtechceu/gtceu/common/data/GTMachines.java

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1802,32 +1802,32 @@ public static BiConsumer<ItemStack, List<Component>> createTankTooltips(String n
18021802
List<MultiblockShapeInfo> shapeInfos = new ArrayList<>();
18031803

18041804
MultiblockShapeInfo.ShapeInfoBuilder baseBuilder = MultiblockShapeInfo.builder()
1805-
.aisle("###############", "######EME######", "###############")
1805+
.aisle("###############", "######NMN######", "###############")
18061806
.aisle("######DCD######", "####GG###GG####", "######UCU######")
1807-
.aisle("####CC###CC####", "###w##EGE##s###", "####CC###CC####")
1808-
.aisle("###C#######C###", "##nKeG###GeKn##", "###C#######C###")
1809-
.aisle("##C#########C##", "#G#s#######w#G#", "##C#########C##")
1807+
.aisle("####CC###CC####", "###w##SGS##e###", "####CC###CC####")
1808+
.aisle("###C#######C###", "##nKsG###GsKn##", "###C#######C###")
1809+
.aisle("##C#########C##", "#G#e#######w#G#", "##C#########C##")
18101810
.aisle("##C#########C##", "#G#G#######G#G#", "##C#########C##")
1811-
.aisle("#D###########D#", "N#S#########N#S", "#U###########U#")
1811+
.aisle("#D###########D#", "W#E#########W#E", "#U###########U#")
18121812
.aisle("#C###########C#", "G#G#########G#G", "#C###########C#")
1813-
.aisle("#D###########D#", "N#S#########N#S", "#U###########U#")
1813+
.aisle("#D###########D#", "W#E#########W#E", "#U###########U#")
18141814
.aisle("##C#########C##", "#G#G#######G#G#", "##C#########C##")
1815-
.aisle("##C#########C##", "#G#s#######w#G#", "##C#########C##")
1816-
.aisle("###C#######C###", "##eKnG###GnKe##", "###C#######C###")
1817-
.aisle("####CC###CC####", "###w##WGW##s###", "####CC###CC####")
1815+
.aisle("##C#########C##", "#G#e#######w#G#", "##C#########C##")
1816+
.aisle("###C#######C###", "##sKnG###GnKs##", "###C#######C###")
1817+
.aisle("####CC###CC####", "###w##NGN##e###", "####CC###CC####")
18181818
.aisle("######DCD######", "####GG###GG####", "######UCU######")
1819-
.aisle("###############", "######WGW######", "###############")
1820-
.where('M', controller, Direction.SOUTH)
1819+
.aisle("###############", "######SGS######", "###############")
1820+
.where('M', controller, Direction.NORTH)
18211821
.where('C', FusionReactorMachine.getCasingState(tier))
18221822
.where('G', FUSION_GLASS.get())
18231823
.where('K', FusionReactorMachine.getCoilState(tier))
1824-
.where('W', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.NORTH)
1825-
.where('E', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.SOUTH)
1826-
.where('S', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.EAST)
1827-
.where('N', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.WEST)
1824+
.where('W', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.WEST)
1825+
.where('E', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.EAST)
1826+
.where('S', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.SOUTH)
1827+
.where('N', GTMachines.FLUID_EXPORT_HATCH[tier], Direction.NORTH)
18281828
.where('w', GTMachines.ENERGY_INPUT_HATCH[tier], Direction.WEST)
1829-
.where('e', GTMachines.ENERGY_INPUT_HATCH[tier], Direction.SOUTH)
1830-
.where('s', GTMachines.ENERGY_INPUT_HATCH[tier], Direction.EAST)
1829+
.where('e', GTMachines.ENERGY_INPUT_HATCH[tier], Direction.EAST)
1830+
.where('s', GTMachines.ENERGY_INPUT_HATCH[tier], Direction.SOUTH)
18311831
.where('n', GTMachines.ENERGY_INPUT_HATCH[tier], Direction.NORTH)
18321832
.where('U', GTMachines.FLUID_IMPORT_HATCH[tier], Direction.UP)
18331833
.where('D', GTMachines.FLUID_IMPORT_HATCH[tier], Direction.DOWN)

0 commit comments

Comments
 (0)