diff --git a/74_Rock_Scissors_Paper/lua/rockscissors.lua b/74_Rock_Scissors_Paper/lua/rockscissors.lua index d7ae7242..0d8708d1 100644 --- a/74_Rock_Scissors_Paper/lua/rockscissors.lua +++ b/74_Rock_Scissors_Paper/lua/rockscissors.lua @@ -35,7 +35,6 @@ function playGame(n) math.randomseed(os.time()) computerChoice = math.random(1,3) - print(computerChoice) humanChoice = choice("3=ROCK...2=SCISSORS...1=PAPER\n1...2...3...WHAT'S YOUR CHOICE? ", itemChoices) humanChoice = tonumber(humanChoice) print("THIS IS MY CHOICE...")