From e12b269fdb5f456da2580f65879f15e6b4f533d8 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Fri, 2 Jul 2021 16:46:50 -0700 Subject: [PATCH] Plugins/Battleship: fix minor typo in comment --- Plugins/Battleship.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Plugins/Battleship.pm b/Plugins/Battleship.pm index e73f1b0d..c3c35c85 100644 --- a/Plugins/Battleship.pm +++ b/Plugins/Battleship.pm @@ -1,7 +1,7 @@ # File: Battleship.pm # # Purpose: Simplified version of the Battleship board game. In this variant, -# there is only one game grid/board and every player's ships are share it. +# there is only one game grid/board and every player's ships share it. # This adds an element of strategy: everybody knows where their own ships # are located and they know that ships cannot overlap, ergo they know where # NOT to aim. This helps to speed games up by removing some randomness. @@ -69,7 +69,7 @@ sub initialize { $self->{channel} = $self->{pbot}->{registry}->get_value('battleship', 'channel') // '##battleship'; # debugging flag - $self->{debug} = $self->{pbot}->{registry}->get_value('battleship', 'debug') // 1; + $self->{debug} = $self->{pbot}->{registry}->get_value('battleship', 'debug') // 0; # player limit per game $self->{MAX_PLAYERS} = 5;