From 35e1921958877a760b6757ec2b1be25066ce4937 Mon Sep 17 00:00:00 2001 Message-Id: <35e1921958877a760b6757ec2b1be25066ce4937.1715740575.git.mdw@distorted.org.uk> From: Mark Wooding Date: Mon, 15 Jan 2001 15:21:05 +0000 Subject: [PATCH] Do not tell people when *we* reset the topic. Organization: Straylight/Edgeware From: Ian Jackson --- bot.tcl | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/bot.tcl b/bot.tcl index fd2bdf9..d5afa81 100755 --- a/bot.tcl +++ b/bot.tcl @@ -415,11 +415,7 @@ proc recordlastseen_n {n how here} { } proc note_topic {showoff whoby topic} { - if {[string length $whoby]} { - set msg "FYI, $whoby has changed the topic on $showoff" - } else { - set msg "FYI, I have reset the topic on $showoff" - } + set msg "FYI, $whoby has changed the topic on $showoff" if {[string length $topic] < 160} { append msg " to $topic" } else { @@ -535,7 +531,6 @@ proc check_justme {lchan} { set topic [chandb_get $lchan topicset] if {[string length $topic]} { sendout TOPIC $lchan $topic - note_topic $lchan {} $topic } } else { sendout PART $lchan -- [mdw]