Skip to content

Commit 1622b75

Browse files
committed
Fixed issue with the displayed rotation tiles going onto the next line in the jar
1 parent 1ec94b5 commit 1622b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/cascadia/Display.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ public static void selectTileRotation(HabitatTile tile) {
310310
for (int i = 0; i < Constants.NUM_EDGES; i++) {
311311
tile.rotateTile(1);
312312
orientationOptions = removeNewlineAndJoin(
313-
orientationOptions, tile.toFormattedString(), "\t\t\t"
313+
orientationOptions, tile.toFormattedString(), " "
314314
);
315315
}
316316
Display.outln(orientationOptions);

0 commit comments

Comments
 (0)