From b46c8b26a62af9438a3ef2d63177c290a791bebe Mon Sep 17 00:00:00 2001 From: aikaterna <20862007+aikaterna@users.noreply.github.com> Date: Tue, 26 Sep 2017 17:06:56 -0700 Subject: [PATCH] Add riot.py --- riot/riot.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 riot/riot.py diff --git a/riot/riot.py b/riot/riot.py new file mode 100644 index 0000000..3c748c9 --- /dev/null +++ b/riot/riot.py @@ -0,0 +1,17 @@ +import discord +from discord.ext import commands + + +class Riot: + + def __init__(self, bot): + self.bot = bot + + @commands.command(pass_context=True, no_pm=True) + async def riot(self, ctx, *, text: str): + """RIOT!""" + await self.bot.say('ヽ༼ຈل͜ຈ༽ノ **' + str(text) + '** ヽ༼ຈل͜ຈ༽ノ') + + +def setup(bot): + bot.add_cog(Riot(bot))