From a363c1a4ea2dc64b370b50f9f1c8173b303affd8 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 6 Mar 2024 11:25:16 +0100 Subject: better discord internal format --- src/main/kotlin/Main.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/main') diff --git a/src/main/kotlin/Main.kt b/src/main/kotlin/Main.kt index 129dd40..0f8891d 100644 --- a/src/main/kotlin/Main.kt +++ b/src/main/kotlin/Main.kt @@ -70,7 +70,7 @@ private fun print( val extraInfoPrefix = when (outputType) { OutputType.DISCORD_PUBLIC -> " = " OutputType.GITHUB -> " * " - OutputType.DISCORD_INTERNAL -> " " + OutputType.DISCORD_INTERNAL -> " - " } println("") println("") @@ -105,7 +105,7 @@ private fun print( fun getChangePrefix(name: String, outputType: OutputType): String { return when (outputType) { - OutputType.DISCORD_INTERNAL -> " " + OutputType.DISCORD_INTERNAL -> "- " OutputType.GITHUB -> " + " OutputType.DISCORD_PUBLIC -> when (name) { "New Features" -> "+ " -- cgit