lib/PrivateMethods.rb in PlayRockPaperScissorsGame-2.8.9 vs lib/PrivateMethods.rb in PlayRockPaperScissorsGame-2.9.0
- old
+ new
@@ -29,9 +29,10 @@
return :TIE if !:WIN | !:LOSE
end
def final_outcome(pl,co)
return :WIN if pl > co
return :LOSE if pl < co
- return :TIE if pl = co
+ # return :TIE if pl = co
+ # there will never be a tie for the final outcome due to the code in the play() method
end
end
end