From dd23fe7defb87693b4d953a1ec8277838cc416a9 Mon Sep 17 00:00:00 2001 From: IchHabeHunger54 <52419336+IchHabeHunger54@users.noreply.github.com> Date: Fri, 12 Jan 2024 21:31:12 +0100 Subject: [PATCH] Make the quote attributions normal hyphens (#6) --- .../neoforged/camelot/commands/information/QuoteCommand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/net/neoforged/camelot/commands/information/QuoteCommand.java b/src/main/java/net/neoforged/camelot/commands/information/QuoteCommand.java index 099f9a5..05b74f3 100644 --- a/src/main/java/net/neoforged/camelot/commands/information/QuoteCommand.java +++ b/src/main/java/net/neoforged/camelot/commands/information/QuoteCommand.java @@ -78,7 +78,7 @@ protected void execute(CommandEvent event) { event.getMessage().reply(STR. """ #\{ quote.id() } > \{ quote.quote() } - - \{ quote.createAuthor() } + \\- \{ quote.createAuthor() } """ .trim()).mentionRepliedUser(false).setAllowedMentions(List.of()).queue(); } @@ -110,7 +110,7 @@ protected void execute(SlashCommandEvent event) { event.reply(STR. """ #\{ quote.id() } > \{ quote.quote() } - - \{ quote.createAuthor() } + \\- \{ quote.createAuthor() } """ .trim()).setAllowedMentions(List.of()).queue(); } }