ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/help.ext
(Generate patch)

Comparing deliantra/server/ext/help.ext (file contents):
Revision 1.6 by root, Sat Apr 21 16:56:31 2007 UTC vs.
Revision 1.7 by root, Mon Apr 23 19:17:16 2007 UTC

77 $res .= "[b]$k:[/b]\n" . (join " ", sort @$v) . "\n\n"; 77 $res .= "[b]$k:[/b]\n" . (join " ", sort @$v) . "\n\n";
78 } 78 }
79 79
80 $pl->reply (undef, $res); 80 $pl->reply (undef, $res);
81 81
82 } elsif (my $topic = $TOPIC->{$topic}) { 82 } elsif (my $item = $TOPIC->{$topic}) {
83 my ($type, @pars) = @$topic; 83 my ($type, @pars) = @$item;
84 $pl->reply (undef, cf::pod::as_text \@pars); 84 $pl->reply (undef, cf::pod::as_text \@pars);
85 85
86 } else { 86 } else {
87 $pl->reply (undef, "'$topic' no such help topic, try just 'help' to get a list of topics."); 87 $pl->reply (undef, "'$topic' no such help topic, try just 'help' to get a list of topics.");
88 } 88 }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines