--- deliantra/server/ext/commands.ext 2007/01/05 21:56:14 1.13 +++ deliantra/server/ext/commands.ext 2007/01/05 22:47:18 1.14 @@ -138,7 +138,7 @@ my $format = "%2s %1s %3s %5s %.60s\n"; - $ob->reply (undef, sprintf $format, "Pl", "I", "Svd", "Reset", "Name"); + $ob->reply (undef, sprintf $format, "Pl", "I", "Svd", "Reset", "Name", cf::NDI_BLACK | cf::NDI_UNIQUE); for (sort keys %cf::MAP) { my $map = $cf::MAP{$_} @@ -149,12 +149,14 @@ my $svd = int $cf::RUNTIME - $map->{last_save}; $svd = "++" if $svd > 99; - $ob->reply (undef, sprintf $format, - (scalar $map->players), - $IN_MEMORY{$map->in_memory} || "?", - $svd, - (int $map->reset_at - $cf::RUNTIME), - $map->{path}->visible_name); + $ob->reply (undef, + (sprintf $format, + (scalar $map->players), + $IN_MEMORY{$map->in_memory} || "?", + $svd, + (int $map->reset_at - $cf::RUNTIME), + $map->{path}->visible_name), + cf::NDI_BLACK | cf::NDI_UNIQUE); } 1