From b61a51ffcc70479cec50663964f27f90f22d448f Mon Sep 17 00:00:00 2001 From: dgw Date: Sat, 27 Jun 2020 17:01:18 -0500 Subject: [PATCH] emoticons: add smirk command + action command --- sopel/modules/emoticons.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/sopel/modules/emoticons.py b/sopel/modules/emoticons.py index b7d3e3501b..dbcb6dc3e3 100644 --- a/sopel/modules/emoticons.py +++ b/sopel/modules/emoticons.py @@ -24,6 +24,13 @@ def happy(bot, trigger): bot.say('ᕕ( ᐛ )ᕗ') +@module.commands('smirk') +@module.action_commands('smirks') +@module.example('.smirk', '(¬‿¬)') +def smirk(bot, trigger): + bot.say('(¬‿¬)') + + @module.commands('tableflip', 'tflip') @module.action_commands('flips table', 'flips a table', 'flips the table') @module.example('.tableflip', '(╯°□°)╯︵ ┻━┻')