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