Issue #437 - fix scramble of words

master
Mailkov 2015-11-29 15:38:04 +00:00
parent 71a3a00573
commit db789be089
1 changed files with 2 additions and 2 deletions

View File

@ -59,8 +59,8 @@ handle remainder => sub {
my $response;
do {
$response = join '', shuffle split(//, $word);
} while (length($word) > 1 && $response eq $word);
$response = join '', shuffle split(//, $match_word);
} while (length($match_word) > 1 && $response eq $match_word);
my $operation;
if ($response) {