From 0ba5cc805c8f3cc7f3b539f3fd5f933c7ca42e99 Mon Sep 17 00:00:00 2001 Message-Id: <0ba5cc805c8f3cc7f3b539f3fd5f933c7ca42e99.1715850067.git.mdw@distorted.org.uk> From: Mark Wooding Date: Fri, 15 Mar 2002 16:48:01 +0000 Subject: [PATCH] untell works for unregistered nicks Organization: Straylight/Edgeware From: Ian Jackson --- bot.tcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.tcl b/bot.tcl index 0f75e1b..06f0b7c 100755 --- a/bot.tcl +++ b/bot.tcl @@ -1328,7 +1328,7 @@ proc tell_delete_msgs {lsenders lrecip} { def_ucmd untell { prefix_nick check_notonchan - nick_securitycheck 0 + if {[nickdb_exists $n]} { nick_securitycheck 0 } set recipients [tell_peernicks $text] if {![llength $recipients]} { usererror "You must say which recipients' messages from you to forget." -- [mdw]