diff --git a/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMe.kt b/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMe.kt index 9bde797..8d6d486 100644 --- a/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMe.kt +++ b/src/commonMain/kotlin/com/jeffpdavidson/kotwords/formats/PuzzleMe.kt @@ -482,11 +482,11 @@ class PuzzleMe(val json: String) : DelegatingPuzzleable() { } } clues = listOf( - Puzzle.ClueList("Bands", bandClues), Puzzle.ClueList( "Rows", buildClueMap(isAcross = true, clueList = rowWords, wordLengthsEnabled = false), - ) + ), + Puzzle.ClueList("Bands", bandClues), ) words = bandWordList + rowWordList } else { diff --git a/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/MarchingBands.kt b/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/MarchingBands.kt index 324c5b9..b6799d8 100644 --- a/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/MarchingBands.kt +++ b/src/commonMain/kotlin/com/jeffpdavidson/kotwords/model/MarchingBands.kt @@ -67,7 +67,7 @@ data class MarchingBands( copyright = copyright, description = description, grid = puzzleGrid, - clues = listOf(Puzzle.ClueList("Bands", bandClueList), Puzzle.ClueList("Rows", rowClueList)), + clues = listOf(Puzzle.ClueList("Rows", rowClueList), Puzzle.ClueList("Bands", bandClueList)), words = bandWordList + rowWordList, ) } diff --git a/src/commonTest/resources/marching-bands/marching-bands-without-rows.jpz b/src/commonTest/resources/marching-bands/marching-bands-without-rows.jpz index 9167c4f..d5326bc 100644 --- a/src/commonTest/resources/marching-bands/marching-bands-without-rows.jpz +++ b/src/commonTest/resources/marching-bands/marching-bands-without-rows.jpz @@ -1 +1 @@ -All done!Test titleTest creatorTest copyrightTest description<b>Bands</b>Band A1 / Band A2 / Band A3Band B1 / Band B2<b>Rows</b>Row 1A / Row 1BRow 2A / Row 2BRow 3A / Row 3BRow 4A / Row 4BRow 5A / Row 5B \ No newline at end of file +All done!Test titleTest creatorTest copyrightTest description<b>Rows</b>Row 1A / Row 1BRow 2A / Row 2BRow 3A / Row 3BRow 4A / Row 4BRow 5A / Row 5B<b>Bands</b>Band A1 / Band A2 / Band A3Band B1 / Band B2 \ No newline at end of file diff --git a/src/commonTest/resources/marching-bands/marching-bands.jpz b/src/commonTest/resources/marching-bands/marching-bands.jpz index aa7cf51..95903c4 100644 --- a/src/commonTest/resources/marching-bands/marching-bands.jpz +++ b/src/commonTest/resources/marching-bands/marching-bands.jpz @@ -1 +1 @@ -All done!Test titleTest creatorTest copyrightTest description<b>Bands</b>Band A1 / Band A2 / Band A3Band B1 / Band B2<b>Rows</b>Row 1A / Row 1BRow 2A / Row 2BRow 3A / Row 3BRow 4A / Row 4BRow 5A / Row 5B \ No newline at end of file +All done!Test titleTest creatorTest copyrightTest description<b>Rows</b>Row 1A / Row 1BRow 2A / Row 2BRow 3A / Row 3BRow 4A / Row 4BRow 5A / Row 5B<b>Bands</b>Band A1 / Band A2 / Band A3Band B1 / Band B2 \ No newline at end of file diff --git a/src/jsTest/resources/marching-bands/marching-bands.pdf b/src/jsTest/resources/marching-bands/marching-bands.pdf index cff6c9e..b80b623 100644 Binary files a/src/jsTest/resources/marching-bands/marching-bands.pdf and b/src/jsTest/resources/marching-bands/marching-bands.pdf differ diff --git a/src/jvmTest/resources/marching-bands/marching-bands.pdf b/src/jvmTest/resources/marching-bands/marching-bands.pdf index 5c3770b..3579295 100644 Binary files a/src/jvmTest/resources/marching-bands/marching-bands.pdf and b/src/jvmTest/resources/marching-bands/marching-bands.pdf differ