From 3b5ca3d62eede1460343b19c09a5c2c9199105cf Mon Sep 17 00:00:00 2001 From: Ske Date: Sun, 22 Dec 2019 14:35:18 +0100 Subject: [PATCH] Properly reset stat message content --- PluralKit.Bot/Commands/MiscCommands.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/MiscCommands.cs b/PluralKit.Bot/Commands/MiscCommands.cs index b9a8f462..603eae4c 100644 --- a/PluralKit.Bot/Commands/MiscCommands.cs +++ b/PluralKit.Bot/Commands/MiscCommands.cs @@ -89,7 +89,7 @@ namespace PluralKit.Bot.Commands { await msg.ModifyAsync(f => { - f.Content = Optional.Unspecified; + f.Content = ""; f.Embed = embed.Build(); }); }