import asyncio
+import random
from plugins import PluginCommand
import bot
class O7(object):
RESPONSES = {
- 'o7': 'o7'
+ 'afternoon': ['o7'],
+ 'bruh': ['Bruh!'],
+ 'evening': ['o7'],
+ 'hehe': [':joy_cat:', ':smile_cat:', ':smiley_cat:', 'LOL'],
+ 'hello': ['o7'],
+ 'hi': ['o7'],
+ 'lol': [':joy_cat:', ':smile_cat:', ':smiley_cat:', 'LOL'],
+ 'morning': ['o7'],
+ 'o7': ['o7']
}
def description(self):
return 'o7'
async def not_our_message(self, message):
- response = self.RESPONSES.get(message.content.strip().lower())
- if response is not None:
- await bot.maybe_say(message.channel, response)
+ responses = self.RESPONSES.get(message.content.strip().lower())
+ if responses is not None:
+ await bot.maybe_say(message.channel, random.choice(responses))
return PluginCommand.exclusive
return PluginCommand.ignored