We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 513a3e5 commit 6e17220Copy full SHA for 6e17220
1 file changed
highscores/lib.py
@@ -588,9 +588,8 @@ def check_generic_game_settings(score_obj: Score, auto_or_teleop: str) -> Union[
588
""" Checks if the universal game settings are valid.
589
:return: None if the settings are valid, or a response with an error message if they are not.
590
"""
591
- if (not score_obj.client_version or float(score_obj.client_version[1:5]) < 19.1
592
- or score_obj.client_version == 'v16.1a' or score_obj.client_version == 'v16.1b'
593
- or score_obj.client_version == 'v16.1c'):
+ if (not score_obj.client_version or float(score_obj.client_version[1:5]) < 19.2
+ or score_obj.client_version == 'v19.2a'):
594
return WRONG_VERSION_MESSAGE
595
if "_p" in score_obj.client_version:
596
return PRERELEASE_MESSAGE
0 commit comments