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(); } } }