From e2af9bcb6f071558b4815ff30aaeb937df2bec21 Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Mon, 15 Jan 2001 02:49:56 +0000 Subject: [PATCH] Spot it's only me regardless of case of my nick. 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 e313f5b..fd2bdf9 100755 --- a/bot.tcl +++ b/bot.tcl @@ -526,7 +526,7 @@ proc check_justme {lchan} { global nick upvar #0 chan_nicks($lchan) nlist if {[llength $nlist] != 1} return - if {"[lindex $nlist 0]" != "$nick"} return + if {"[lindex $nlist 0]" != "[irctolower $nick]"} return if {[chandb_exists $lchan]} { set mode [chandb_get $lchan mode] if {"$mode" != "*"} { -- [mdw]