From 0de26afa99c119c2650ec285711d67b04c42a18c Mon Sep 17 00:00:00 2001 From: Daniel DiPaolo Date: Mon, 3 Nov 2003 03:23:00 +0000 Subject: [PATCH] changed factoids to use irc.reply(..., action=True) instead of queueMsg --- plugins/MoobotFactoids.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/MoobotFactoids.py b/plugins/MoobotFactoids.py index 3d4027335..6fb4953d4 100644 --- a/plugins/MoobotFactoids.py +++ b/plugins/MoobotFactoids.py @@ -203,7 +203,7 @@ class MoobotFactoids(callbacks.PrivmsgCommandAndRegexp): # Now actually get the factoid and respond accordingly (type, text) = self.parseFactoid(irc, msg, fact) if type == "action": - irc.queueMsg(ircmsgs.action(ircutils.replyTo(msg), text)) + irc.reply(msg, text, action=True) elif type == "reply": irc.reply(msg, text, prefixName=False) elif type == "define":