From f1b53073fb0012ebbf0957003699509100086c47 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Fri, 17 Dec 2004 20:08:18 +0000 Subject: [PATCH] Make sure reply prefixes the nick. --- plugins/Utilities.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/Utilities.py b/plugins/Utilities.py index b4eb3c28e..f7abd6fa3 100644 --- a/plugins/Utilities.py +++ b/plugins/Utilities.py @@ -48,6 +48,8 @@ import supybot.ircutils as ircutils import supybot.callbacks as callbacks class Utilities(callbacks.Privmsg): + # Yes, I really do mean "requires no arguments" below. "takes no + # arguments" would probably lead people to think it was a useless command. def ignore(self, irc, msg, args): """requires no arguments @@ -61,7 +63,7 @@ class Utilities(callbacks.Privmsg): Replies with . Equivalent to the alias, 'echo $nick: $1'. """ - irc.reply(text) + irc.reply(text, prefixName=True) reply = wrap(reply, ['text']) def success(self, irc, msg, args, text):