super useful plugin that shuffles the message you send.

This commit is contained in:
Florent Le Coz 2012-12-18 02:03:24 +01:00
parent be8ea85a9f
commit ca7489fd8f

11
plugins/shuffle.py Normal file
View file

@ -0,0 +1,11 @@
from plugin import BasePlugin
from random import shuffle
class Plugin(BasePlugin):
def init(self):
self.add_event_handler('muc_say', self.shuffle)
def shuffle(self, msg, tab):
split = msg['body'].split()
shuffle(split)
msg['body'] = ' '.join(split)