We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42ffbae commit bb36e97Copy full SHA for bb36e97
1 file changed
lib/gameplay.rb
@@ -72,7 +72,7 @@ def final_score(frames)
72
def validate_input(input, frames)
73
return false if input == ""
74
return false if input == "/" && @current_ball == 1
75
- return false if input == "X" && @current_ball == 2
+ return false if input == "X" && @current_ball == 2 && @current_frame != 10
76
return false if /[X\/1-9]/.match(input) == nil
77
end
78
0 commit comments