From 125a2f9bbdf22eb45fb3abc7eaebbe352330ad88 Mon Sep 17 00:00:00 2001 From: CMDR furrycat Date: Sat, 31 Mar 2018 20:01:12 +0100 Subject: [PATCH] Fixed smiley_cat. --- plugin/affection/affection.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/affection/affection.py b/plugin/affection/affection.py index 83046ce..5e92448 100644 --- a/plugin/affection/affection.py +++ b/plugin/affection/affection.py @@ -37,13 +37,13 @@ class Affection(object): @asyncio.coroutine def handle_affection(self, message, command): if command in self.eat: - responses = ['om nom nom', '=^-^=', 'meow!', 'lick', ':cat:', ':cat2:', ':fork_and_knife:', ':smiley_cat'] + responses = ['om nom nom', '=^-^=', 'meow!', 'lick', ':cat:', ':cat2:', ':fork_and_knife:', ':smiley_cat:'] elif command in self.drink: responses = ['slurp', '=^-^=', 'meow!', 'lap lap lap', 'lick', ':cat:', ':cat2:', ':tropical_drink:'] elif command in self.drugs: responses = ['>(@.@)<'] else: - responses = ['nuzzle', '=^-^=', 'meow!', 'mrrp', ':cat:', ':cat2:', ':paw_prints:', 'smiley_cat'] + responses = ['nuzzle', '=^-^=', 'meow!', 'mrrp', ':cat:', ':cat2:', ':paw_prints:', 'smiley_cat:'] for response in responses: said = yield from bot.maybe_say(message.channel, response) if said: -- 2.7.4