From: ijackson Date: Tue, 12 Feb 2002 19:41:01 +0000 (+0000) Subject: Bugfixes. X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ijackson/git?a=commitdiff_plain;h=e1f52aadb6a2ccb27b3e5d7eb9bbc69cfbb9b643;p=ircbot.git 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}]