From c8301eb4ff79d90b28ba6ea768f4adf575eba06d Mon Sep 17 00:00:00 2001 From: FifthTundraG <117035030+FifthTundraG@users.noreply.github.com> Date: Mon, 13 May 2024 00:03:06 -0400 Subject: meta: Fix /neupronouns output to condense to a single line (#1170) Improve /neupronouns output --- .../github/moulberry/notenoughupdates/commands/misc/MiscCommands.kt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/misc/MiscCommands.kt b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/misc/MiscCommands.kt index 70a72342..ba325e11 100644 --- a/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/misc/MiscCommands.kt +++ b/src/main/kotlin/io/github/moulberry/notenoughupdates/commands/misc/MiscCommands.kt @@ -153,9 +153,7 @@ class MiscCommands { nc.printChatMessageWithOptionalDeletion( ChatComponentText("§e[NEU] Pronouns for §b$user §eon §b$platform§e:"), id ) - betterPronounChoice.render().forEach { - nc.printChatMessage(ChatComponentText("§e[NEU] §a$it")) - } + nc.printChatMessage(ChatComponentText("§e[NEU] §a${betterPronounChoice.render()}")) null }, MinecraftExecutor.OffThread) -- cgit