diff --git a/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandTree.cs b/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandTree.cs index 04292a88..7f3600ae 100644 --- a/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandTree.cs +++ b/PluralKit.Bot/ApplicationCommandMeta/ApplicationCommandTree.cs @@ -12,7 +12,7 @@ public partial class ApplicationCommandTree else if (ctx.Event.Data!.Name == ProxiedMessageDelete.Name) return ctx.Execute(ProxiedMessageDelete, m => m.DeleteMessage(ctx)); else if (ctx.Event.Data!.Name == ProxiedMessagePing.Name) - return ctx.Execute(ProxiedMessageDelete, m => m.PingMessageAuthor(ctx)); + return ctx.Execute(ProxiedMessagePing, m => m.PingMessageAuthor(ctx)); return null; }