Add riot.py
This commit is contained in:
17
riot/riot.py
Normal file
17
riot/riot.py
Normal 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))
|
||||
Reference in New Issue
Block a user