diff --git a/PluralKit.Bot/Commands/Member.cs b/PluralKit.Bot/Commands/Member.cs index 001d46f7..68c2830e 100644 --- a/PluralKit.Bot/Commands/Member.cs +++ b/PluralKit.Bot/Commands/Member.cs @@ -91,7 +91,9 @@ namespace PluralKit.Bot var eb = new DiscordEmbedBuilder() .WithColor(DiscordColor.Red) - .WithDescription($"[*{scream}*](https://onomancer.sibr.dev/reflect?name={encoded})"); + .WithTitle(name) + .WithUrl($"https://onomancer.sibr.dev/reflect?name={encoded}") + .WithDescription($"*{scream}*"); await ctx.Reply(embed: eb.Build()); } }