From 21994c0796765d4ae65d8f176a99493b9d7268ae Mon Sep 17 00:00:00 2001 From: Flummi Date: Tue, 22 Aug 2017 15:41:24 +0200 Subject: [PATCH] spucken ist toll <3 --- bot/plugins/useless.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/bot/plugins/useless.py b/bot/plugins/useless.py index b28212c..40433da 100644 --- a/bot/plugins/useless.py +++ b/bot/plugins/useless.py @@ -371,6 +371,16 @@ class Useless(DatabasePlugin): return 'Assuming {}\'s gender... they\'re a {}.'.format(nick, gender) + @command + def spit(self, mask: IrcString, target: IrcString, args: DocOptDict): + """spits a user + + %%spit [] + """ + nick = args.get('', mask.nick) + + return 'spits on {} like a dirty whore.'.format(nick) + # noinspection PyMethodMayBeStatic def _rainbow(self, i, char): return '\x03{0:02d}{1}'.format(RAINBOW[i % RAINBOW_LEN], char)