From 5124d263d5ed46ff75821d773a01e8d8ea36df46 Mon Sep 17 00:00:00 2001 From: Bella | Nightshade <47324660+xBelladonna@users.noreply.github.com> Date: Fri, 10 May 2019 17:18:44 +0000 Subject: [PATCH] bot: yes (#96) --- src/pluralkit/bot/commands/__init__.py | 2 ++ src/pluralkit/bot/commands/misc_commands.py | 3 +++ 2 files changed, 5 insertions(+) diff --git a/src/pluralkit/bot/commands/__init__.py b/src/pluralkit/bot/commands/__init__.py index fef96ae7..e5aa319e 100644 --- a/src/pluralkit/bot/commands/__init__.py +++ b/src/pluralkit/bot/commands/__init__.py @@ -205,6 +205,8 @@ async def command_root(ctx: CommandContext): await misc_commands.pkfreeze(ctx) elif ctx.match("starstorm"): await misc_commands.pkstarstorm(ctx) + elif ctx.match("mn"): + await misc_commands.pkmn(ctx) elif ctx.match("commands"): await misc_commands.command_list(ctx) else: diff --git a/src/pluralkit/bot/commands/misc_commands.py b/src/pluralkit/bot/commands/misc_commands.py index be10ee9d..7e9e1efa 100644 --- a/src/pluralkit/bot/commands/misc_commands.py +++ b/src/pluralkit/bot/commands/misc_commands.py @@ -192,3 +192,6 @@ async def pkfreeze(ctx: CommandContext): async def pkstarstorm(ctx: CommandContext): await ctx.message.channel.send("*Vibrant colours burst forth from the sky as meteors rain down upon your opponent.*") + +async def pkmn(ctx: CommandContext): + await ctx.message.channel.send("Gotta catch 'em all!") \ No newline at end of file