From 6dd179f9e91b995ef515d943a121f2d2ff909504 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Mon, 13 Jan 2014 18:07:49 +0100 Subject: [PATCH] Later: Always prefix nick if telling in channel --- plugins/Later/plugin.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/Later/plugin.py b/plugins/Later/plugin.py index 8bd00687b..a7167207f 100644 --- a/plugins/Later/plugin.py +++ b/plugins/Later/plugin.py @@ -245,7 +245,10 @@ class Later(callbacks.Plugin): private = self.registryValue('private') for (when, whence, note) in notes: s = self._formatNote(when, whence, note) - irc.reply(s, private=private) + if private: + irc.reply(s, private=True) + else: + irc.reply(s, private=False, prefixNick=True) self._flushNotes() def _formatNote(self, when, whence, note):