diff --git a/Felicity/DiscordCommands/Interactions/EmblemCommands.cs b/Felicity/DiscordCommands/Interactions/EmblemCommands.cs index 302330d..fadf8b4 100644 --- a/Felicity/DiscordCommands/Interactions/EmblemCommands.cs +++ b/Felicity/DiscordCommands/Interactions/EmblemCommands.cs @@ -297,6 +297,9 @@ where EmblemCats.EmblemCatList.Contains((EmblemCat)definitionParentNode.Hash!) { var errorEmbed = Embeds.MakeErrorEmbed(); errorEmbed.Description = error.Message; + if (error.StackTrace != null) { + errorEmbed.Description += "\n" + error.StackTrace.Split(Environment.NewLine).FirstOrDefault(); + } await FollowupAsync(embed: errorEmbed.Build()); return; }