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 8955f03 commit 513a3e5Copy full SHA for 513a3e5
1 file changed
highscores/lib.py
@@ -588,7 +588,7 @@ 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]) < 16.1
+ 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'):
594
return WRONG_VERSION_MESSAGE
0 commit comments