From 76e77c4719ceaa08c15ae9c99d85c08a971dfac3 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Fri, 20 Jan 2017 16:30:37 +0000 Subject: [PATCH] More affection. --- plugin/affection/affection.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugin/affection/affection.py b/plugin/affection/affection.py index c39e0b2..8659a42 100644 --- a/plugin/affection/affection.py +++ b/plugin/affection/affection.py @@ -5,8 +5,8 @@ import bot class Affection(object): def __init__(self): - self.eat = ['biscuit', 'catnip', 'food', 'treat'] - self.fuss = ['fuss', 'love', 'pat', 'pet'] + self.eat = ['biscuit', 'catnip', 'food', 'fish', 'lollipop', 'sausage', 'treat'] + self.fuss = ['fuss', 'hug', 'love', 'nice', 'pat', 'pet', 'stroke'] def description(self): return 'Respond (or not) to displays of affection.' @@ -35,9 +35,9 @@ class Affection(object): @asyncio.coroutine def handle_affection(self, message, command): if command in self.eat: - responses = ['om nom nom', '^-^', 'meow!', 'lick', ':cat:'] + responses = ['om nom nom', '^-^', 'meow!', 'lick', ':cat:', ':fork_and_knife:'] else: - responses = ['nuzzle', '^-^', 'meow!', 'mrrp', ':cat:'] + responses = ['nuzzle', '^-^', 'meow!', 'mrrp', ':cat:', ':paw_prints:'] for response in responses: said = yield from bot.maybe_say(message.channel, response) if said: -- 2.7.4