From 73fb339b04b75d1facbdf9f19d19703b3c4296e3 Mon Sep 17 00:00:00 2001 From: James Vega Date: Sun, 23 Nov 2008 00:35:47 +0000 Subject: [PATCH] Only disable prefixNick if action is actually True --- src/callbacks.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/callbacks.py b/src/callbacks.py index 0e8de725c..c598819c6 100644 --- a/src/callbacks.py +++ b/src/callbacks.py @@ -817,7 +817,8 @@ class NestedCommandsIrcProxy(ReplyIrcProxy): self.prefixNick = prefixNick if action is not None: self.action = self.action or action - self.prefixNick = False + if action: + self.prefixNick = False if notice is not None: self.notice = self.notice or notice if private is not None: