Plugins/Battleship: make scoreboard slightly less wide

This commit is contained in:
Pragmatic Software 2021-07-03 11:31:01 -07:00
parent 83147281d8
commit d41b91fb3e
1 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
#
# Purpose: Simplified version of the Battleship board game. In this variant,
# there is one game grid/board and every player's ships share it without
# overlapping. This adds nn element of strategy: everybody knows where their
# overlapping. This adds an element of strategy: everybody knows where their
# own ships are located, ergo they know where NOT to aim. This helps to speed
# games up by removing some randomness.
#
@ -963,7 +963,7 @@ sub show_scoreboard {
foreach my $player (sort { $b->{health} <=> $a->{health} } @{$self->{state_data}->{players}}) {
next if $player->{removed};
my $buf = sprintf("%-15s shots: %2d, hit: %2d, miss: %2d, acc: %3d%%, sunk: %2d, ships left: %d, sections left: %2d",
my $buf = sprintf("%-10s shots: %2d, hit: %2d, miss: %2d, acc: %3d%%, sunk: %2d, ships left: %d, sections left: %2d",
"$player->{name}:",
$player->{shots},
$player->{hit},