3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-01 17:16:39 +02:00

Tip to ask for a hint after 4 wrong streak

This commit is contained in:
Pragmatic Software 2016-12-06 17:57:50 -08:00
parent ddd543146f
commit 9845bd3b00

View File

@ -210,7 +210,7 @@ foreach my $answer (@valid_answers) {
my $streakers = $scores->get_all_correct_streaks($channel);
foreach my $streaker (@$streakers) {
next if $streaker->{nick} eq $nick;
next if lc $streaker->{nick} eq lc $nick;
if ($streaker->{correct_streak} >= 3) {
print "$color{orange}$nick$color{red} ended $color{orange}$streaker->{nick}$color{red}'s $color{orange}$streaker->{correct_streak}$color{red} correct answer streak!$color{reset}\n";
@ -359,6 +359,7 @@ if ($qdata->{wrong_streak} > $qdata->{highest_wrong_streak}) {
$qstats->add_wrong_answer($id, $lctext, $nick);
my %streaks = (
4 => "Maybe try asking for a hint, $nick?",
5 => "Guessing, are we, $nick?",
7 => "Think of your correct/incorrect ratio! Use a hint, $nick!",
);