@@ -1,6 +1,6 @@ | |||
public class GameClass { | |||
public static void main(String[] args){ | |||
while (RockPaperScissors.playerScore < 7 ) RockPaperScissors.runGame(); | |||
while (RockPaperScissors.playerScore < 7 && RockPaperScissors.computerScore < 7) RockPaperScissors.runGame(); | |||
} | |||
} |
@@ -77,7 +77,7 @@ public class RockPaperScissors { | |||
public static int letComputerChoose() { | |||
Random rgen = new Random(); | |||
int computerInput = rgen.nextInt(1,3); | |||
int computerInput = rgen.nextInt(1,4); | |||
return computerInput; | |||
} | |||