From c84e8b18bffcd960e8b20d51c3253b277d0bd0fa Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Mon, 12 Feb 2018 09:04:33 -0800 Subject: [PATCH] Spinach: Very minor textual improvements --- PBot/Plugins/Spinach.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PBot/Plugins/Spinach.pm b/PBot/Plugins/Spinach.pm index 73f9973c..5bb57022 100644 --- a/PBot/Plugins/Spinach.pm +++ b/PBot/Plugins/Spinach.pm @@ -516,7 +516,7 @@ sub spinach_cmd { } if (not $player) { - return "$nick: You are not playing in this game. Use `join` to start playing now!"; + return "$nick: You are not playing in this game. Use `j` to start playing now!"; } $arguments = $self->normalize_text($arguments); @@ -565,7 +565,7 @@ sub spinach_cmd { } if (not $player) { - return "$nick: You are not playing in this game. Please wait until the next game."; + return "$nick: You are not playing in this game. Use `j` to start playing now!"; } if ($arguments !~ /^[0-9]+$/) { @@ -1166,7 +1166,7 @@ sub choosecategory { my $i = 1; my $comma = ''; foreach my $choice (@choices) { - $state->{categories_text} .= "$comma$i) $choice"; + $state->{categories_text} .= "$comma$i) " . uc $choice; $i++; $comma = "; "; }