Score calculation improvements

This commit is contained in:
2020-02-19 00:28:35 +00:00
parent dbea63edd3
commit cfc558a3d2
2 changed files with 17 additions and 5 deletions

View File

@@ -148,9 +148,9 @@ while ($gameRuntime)
echo 'You lost this match of Rock Paper Scissors! Thank you for playing!' . PHP_EOL;
}
echo PHP_EOL;
echo 'The main menu will appear in five seconds...';
echo 'The main menu will appear in fifteen seconds...';
sleep(5);
sleep(15);
Menu::clearScreen();
unset($robot, $human, $computerChoiceItem, $humanChoiceItem);