Skip to content

Commit

Permalink
Sort the output of /list-worldgen-failures
Browse files Browse the repository at this point in the history
  • Loading branch information
StefanOltmann committed Nov 17, 2024
1 parent 2cca6b3 commit c76aa43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/Routings.kt
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ fun Application.configureRouting() {

logger.info("The database contains ${coordinates.size} seeds reported as world gen failures.")

val asSimpleString = coordinates.joinToString("\n")
val asSimpleString = coordinates.sorted().joinToString("\n")

call.respond(asSimpleString)
}
Expand Down

0 comments on commit c76aa43

Please sign in to comment.