From ce546bd2d4ce4e89fa111df3d052b44b82dd4f4c Mon Sep 17 00:00:00 2001 From: Ske Date: Sun, 30 Jan 2022 05:04:02 +0100 Subject: [PATCH] feat: dem of crassy (don't mind me) --- 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 7d93b3d3..bf559dbc 100644 --- a/PluralKit.Bot/CommandMeta/CommandTree.cs +++ b/PluralKit.Bot/CommandMeta/CommandTree.cs @@ -82,6 +82,7 @@ public partial class CommandTree if (ctx.Match("freeze")) return ctx.Execute(null, m => m.Freeze(ctx)); 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("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 4f588fe9..f88fc9b4 100644 --- a/PluralKit.Bot/Commands/Fun.cs +++ b/PluralKit.Bot/Commands/Fun.cs @@ -28,6 +28,9 @@ public class Fun ctx.Reply( "*A ball of green light appears above your head and flies towards your enemy, exploding on contact.*"); + public Task Rool(Context ctx) => + ctx.Reply("*\"What the fuck is a Pokémon?\"*"); + public Task Error(Context ctx) { if (ctx.Match("message"))