From c032450d8274a75a49323a74c050cec5b3455202 Mon Sep 17 00:00:00 2001 From: Pragmatic Software Date: Sun, 5 May 2019 23:17:33 -0700 Subject: [PATCH] Spinach: Correct extremely minor typo --- PBot/Plugins/Spinach.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PBot/Plugins/Spinach.pm b/PBot/Plugins/Spinach.pm index f3317840..5292f987 100644 --- a/PBot/Plugins/Spinach.pm +++ b/PBot/Plugins/Spinach.pm @@ -1709,7 +1709,7 @@ sub getnewquestion { my $max = $self->{metadata}->{hash}->{settings}->{max_difficulty}; my $expiry = $self->{metadata}->{hash}->{settings}->{seen_expiry}; $self->{pbot}->{logger}->log("Zero questions for [$state->{current_category}]!\n"); - $self->send_message($self->{channel}, "No questions available in category $state->{current_category} (min/max difficulty: $min/$max; seen expiry: $expiry)! Pickin new category..."); + $self->send_message($self->{channel}, "No questions available in category $state->{current_category} (min/max difficulty: $min/$max; seen expiry: $expiry)! Picking new category..."); delete $state->{seen_questions}->{$state->{current_category}}; @questions = keys %{$self->{categories}{$state->{current_category}}}; $state->{reroll_category} = 1;