From 5a9edcaaae5ab3448ef26ecbbc9bdc3f2ed8619b Mon Sep 17 00:00:00 2001 From: redphantom1000 Date: Thu, 26 Mar 2026 01:40:41 -0400 Subject: [PATCH] Update UnlinkAccountCommand.java Made the /unlinkaccount command ephemeral to match up with /linkaccount command behavior --- .../commands/discord/other/UnlinkAccountCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/dev/bluetree242/discordsrvutils/commands/discord/other/UnlinkAccountCommand.java b/core/src/main/java/dev/bluetree242/discordsrvutils/commands/discord/other/UnlinkAccountCommand.java index dbc7558a..bab96deb 100644 --- a/core/src/main/java/dev/bluetree242/discordsrvutils/commands/discord/other/UnlinkAccountCommand.java +++ b/core/src/main/java/dev/bluetree242/discordsrvutils/commands/discord/other/UnlinkAccountCommand.java @@ -41,7 +41,7 @@ public void run(CommandEvent e) throws Exception { if (uuid == null) e.reply(Embed.error("You are not linked.")).queue(); else { core.getDiscordSRV().unlink(uuid); - e.reply(Embed.success("You have been unlinked.")).queue(); + e.reply(Embed.success("You have been unlinked.")).setEphemeral(true).queue(); } } }