--- deliantra/server/ext/irc.ext 2007/08/25 11:51:04 1.5 +++ deliantra/server/ext/irc.ext 2007/10/05 08:14:23 1.7 @@ -37,8 +37,10 @@ my ($name, $me, $msg) = @_; if ($msg eq "!who") { - do_notice $_ - for ext::commands::who_listing (0, "."); + # clobbers irc, http is available + do_notice "see http://cf.schmorp.de/userlist.crossfire.schmorp.de.html"; +# do_notice $_ +# for ext::commands::who_listing (0, "."); } elsif ($msg =~ /^\!tell/) { my (undef, $target, $tmsg) = split / /, $msg, 3; @@ -53,7 +55,7 @@ } else { cf::LOG cf::llevDebug, sprintf "TELL [%s/%s>%s] %s\n", $name, $me, $target, $tmsg; - $other->ns->send_msg (cf::chat::tell_channel ("$name/$me"), "$name/$me tells you: $tmsg", cf::NDI_DK_ORANGE | cf::NDI_DEF); + $other->ns->send_msg (ext::chat::tell_channel ("$name/$me"), "$name/$me tells you: $tmsg", cf::NDI_DK_ORANGE | cf::NDI_DEF); } } else { do_notice "$me: What do you want to tell $target?";