--- deliantra/server/ext/help.ext 2007/04/18 17:57:24 1.3 +++ deliantra/server/ext/help.ext 2007/04/21 16:56:31 1.6 @@ -43,6 +43,17 @@ }; }; +# for lack of a better place: "media tags" +# b bold +# i italic +# ul underlined +# fixed font +# arcane font +# hand font +# strange font +# print font (default) +# color=xxx + cf::register_command help => sub { my ($pl, $topic) = @_; @@ -63,7 +74,7 @@ my $res; while (my ($k, $v) = each %topics) { - $res .= "[b]$k:[/b]\n" . (join " ", @$v) . "\n\n"; + $res .= "[b]$k:[/b]\n" . (join " ", sort @$v) . "\n\n"; } $pl->reply (undef, $res);