From 0977088753fd2adaced4fa963db0dd5b53271c68 Mon Sep 17 00:00:00 2001 From: Ske Date: Fri, 4 Feb 2022 03:12:14 +0100 Subject: [PATCH] feat: when the myriad is sys-- er, sus --- PluralKit.Bot/CommandMeta/CommandTree.cs | 1 + PluralKit.Bot/Commands/Fun.cs | 3 +++ 2 files changed, 4 insertions(+) diff --git a/PluralKit.Bot/CommandMeta/CommandTree.cs b/PluralKit.Bot/CommandMeta/CommandTree.cs index bf559dbc..f833cc01 100644 --- a/PluralKit.Bot/CommandMeta/CommandTree.cs +++ b/PluralKit.Bot/CommandMeta/CommandTree.cs @@ -83,6 +83,7 @@ public partial class CommandTree if (ctx.Match("starstorm")) return ctx.Execute(null, m => m.Starstorm(ctx)); if (ctx.Match("flash")) return ctx.Execute(null, m => m.Flash(ctx)); if (ctx.Match("rool")) return ctx.Execute(null, m => m.Rool(ctx)); + if (ctx.Match("sus")) return ctx.Execute(null, m => m.Sus(ctx)); if (ctx.Match("error")) return ctx.Execute(null, m => m.Error(ctx)); if (ctx.Match("stats")) return ctx.Execute(null, m => m.Stats(ctx)); if (ctx.Match("permcheck")) diff --git a/PluralKit.Bot/Commands/Fun.cs b/PluralKit.Bot/Commands/Fun.cs index f88fc9b4..d0113ebb 100644 --- a/PluralKit.Bot/Commands/Fun.cs +++ b/PluralKit.Bot/Commands/Fun.cs @@ -30,6 +30,9 @@ public class Fun public Task Rool(Context ctx) => ctx.Reply("*\"What the fuck is a Pokémon?\"*"); + + public Task Sus(Context ctx) => + ctx.Reply("\U0001F4EE"); public Task Error(Context ctx) {