Adjusted RPS related actions

This commit is contained in:
Aaron
2021-01-23 16:47:31 -05:00
parent e461dae024
commit 219de54856
3 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -175,7 +175,7 @@ class RPS {
else if you == .paper && computer == .rock { return true}
else if you == .scissors && computer == .paper { return true }
else {
return playRPS(you: you, computer: RPS.randomComputerChoice())
return false
}
}