diff --git a/plugins/Reply/plugin.py b/plugins/Reply/plugin.py index 9b0a6db4a..a49018a98 100644 --- a/plugins/Reply/plugin.py +++ b/plugins/Reply/plugin.py @@ -73,7 +73,16 @@ class Reply(callbacks.Plugin): """ irc.reply(text, prefixNick=True) reply = wrap(reply, ['text']) - + + def replies(self, irc, msg, args, strings): + """ [ ...] + + Replies with each of its arguments in separate replies, depending + the configuration of supybot.reply.oneToOne. + """ + irc.replies(strings) + replies = wrap(replies, [many('something')]) + Class = Reply