18 lines
377 B
Python
18 lines
377 B
Python
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))
|