Add riot.py

This commit is contained in:
aikaterna
2017-09-26 17:06:56 -07:00
committed by GitHub
parent 4db6023717
commit b46c8b26a6

17
riot/riot.py Normal file
View File

@@ -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))