mirror of
https://github.com/Mikaela/Limnoria.git
synced 2025-02-17 06:00:42 +01:00
Later: Always prefix nick if telling in channel
This commit is contained in:
parent
39d874024f
commit
6dd179f9e9
@ -245,7 +245,10 @@ class Later(callbacks.Plugin):
|
|||||||
private = self.registryValue('private')
|
private = self.registryValue('private')
|
||||||
for (when, whence, note) in notes:
|
for (when, whence, note) in notes:
|
||||||
s = self._formatNote(when, whence, note)
|
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()
|
self._flushNotes()
|
||||||
|
|
||||||
def _formatNote(self, when, whence, note):
|
def _formatNote(self, when, whence, note):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user