Skip to content

Commit a58923f

Browse files
committed
how it feels to spotless
1 parent f0798f1 commit a58923f

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/main/java/gregtech/api/metatileentity/multiblock/MultiblockControllerBase.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@
9090
import static gregtech.api.capability.GregtechDataCodes.*;
9191

9292
public abstract class MultiblockControllerBase extends MetaTileEntity implements IMultiblockController {
93+
9394
public static final String DEFAULT_STRUCTURE = "main";
9495

9596
protected final Comparator<IMultiblockPart> partComparator = Comparator.comparingLong(part -> {

src/main/java/gregtech/client/renderer/handler/MultiblockPreviewRenderer.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,8 @@ public static void renderControllerInList(MultiblockControllerBase src, Map<Stri
126126
world.setBlockState(SOURCE, src.getBlock().getDefaultState());
127127
world.setTileEntity(SOURCE, holder);
128128

129-
((MultiblockControllerBase) holder.getMetaTileEntity()).autoBuild(new GregFakePlayer(world), keyMap, MultiblockControllerBase.DEFAULT_STRUCTURE);
129+
((MultiblockControllerBase) holder.getMetaTileEntity()).autoBuild(new GregFakePlayer(world), keyMap,
130+
MultiblockControllerBase.DEFAULT_STRUCTURE);
130131
((MultiblockControllerBase) holder.getMetaTileEntity()).checkStructurePattern();
131132

132133
int finalMaxY = (int) (layer % (world.getMaxPos().y - world.getMinPos().y + 2));

0 commit comments

Comments
 (0)