From: Ian Jackson Date: Tue, 12 Feb 2002 19:41:01 +0000 (+0000) Subject: Bugfixes. X-Git-Tag: merge-2001-10-09-tell~14 X-Git-Url: https://git.distorted.org.uk/~mdw/ircbot/commitdiff_plain/156725c8ecf41db122c25e47d959fbefc61d137f Bugfixes. --- diff --git a/bot.tcl b/bot.tcl index 105a0a2..3538397 100755 --- a/bot.tcl +++ b/bot.tcl @@ -151,7 +151,7 @@ proc tell_event {nl event} { # later. We also support the psuedo-event `none'. The del msg # and new msg events are handled by the command procedures, not here. global calling_nick - if {[info exists calling_nick] { set save $calling_nick } + if {[info exists calling_nick]} { set save $calling_nick } switch -exact $event { none { } talk { @@ -198,7 +198,7 @@ proc tell_event_core {nl event} { # When user talks we actually get talk now and act later global calling_nick set calling_nick $nl - set iml [msgdb_get $nl inbound] + set iml [msgsdb_get $nl inbound] if {![llength $iml]} return set ago [expr {$now - $telling_when}]