--- deliantra/server/ext/help.ext 2007/04/23 19:17:16 1.7 +++ deliantra/server/ext/help.ext 2007/09/19 21:56:30 1.10 @@ -38,6 +38,7 @@ cf::sync_job { my $guard = cf::lock_acquire "ext::help::loading"; cf::async_ext { + $Coro::current->{desc} = "help loader"; reload; undef $guard; }; @@ -74,14 +75,14 @@ my $res; while (my ($k, $v) = each %topics) { - $res .= "[b]$k:[/b]\n" . (join " ", sort @$v) . "\n\n"; + $res .= "B<$k:>\n" . (join " ", sort @$v) . "\n\n"; } $pl->reply (undef, $res); } elsif (my $item = $TOPIC->{$topic}) { my ($type, @pars) = @$item; - $pl->reply (undef, cf::pod::as_text \@pars); + $pl->reply (undef, cf::pod::as_cfpod \@pars); } else { $pl->reply (undef, "'$topic' no such help topic, try just 'help' to get a list of topics.");