Fixed smiley_cat.
authorCMDR furrycat <elite@furrycat.net>
Sat, 31 Mar 2018 19:01:12 +0000 (20:01 +0100)
committerCMDR furrycat <elite@furrycat.net>
Sat, 31 Mar 2018 19:01:12 +0000 (20:01 +0100)
plugin/affection/affection.py

index 83046ce..5e92448 100644 (file)
@@ -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: