--- deliantra/server/ext/schmorplog.ext 2008/05/01 06:47:03 1.17 +++ deliantra/server/ext/schmorplog.ext 2008/05/01 08:58:59 1.18 @@ -119,7 +119,7 @@ my $rep = "$args died a total of " . $pl->ob->get_ob_key_value ("schmorplog_death_count") . " times, among them:\n\n\n\n"; for (sort { $s->{$b} <=> $s->{$a} } keys %$s) { - $rep .= "$s->{$_} times due to $_.\n\n"; + $rep .= "$s->{$_} time(s) due to $_.\n\n"; } $who->reply ($npc, $rep); @@ -132,7 +132,7 @@ my $s = $pl->ob->{stats_kill} or return $who->reply ($npc, "I don't know of I that $args has killed so far."); - my $rep = sprintf "\n\nC<%6s> %s\n\n", "#", "Name"; + my $rep = sprintf "\n\nC<%6s> %s\n\n", "Kills", "Name"; for (sort { $s->{$a} <=> $s->{$b} } keys %$s) { $rep .= sprintf "C<%6s> %s\n\n", $s->{$_}, $_; }