3
0
mirror of https://github.com/pragma-/pbot.git synced 2024-10-04 18:38:47 +02:00

Spinach: Minor whitespace fix

This commit is contained in:
Pragmatic Software 2019-05-09 00:18:23 -07:00
parent 9ccd2141a5
commit 0ecde9d690

View File

@ -1903,7 +1903,7 @@ sub getlies {
$needed -= @rerolls;
if ($needed <= 0) {
$state->{reroll_question} = 1;
$self->send_message($self->{channel}, "The answer was:" . uc $state->{current_question}->{answer});
$self->send_message($self->{channel}, "The answer was: " . uc $state->{current_question}->{answer});
return 'reroll';
}
}
@ -1913,7 +1913,7 @@ sub getlies {
$needed += @keeps;
$needed -= @skips;
if ($needed <= 0) {
$self->send_message($self->{channel}, "The answer was:" . uc $state->{current_question}->{answer});
$self->send_message($self->{channel}, "The answer was: " . uc $state->{current_question}->{answer});
return 'skip';
}
}