Skip to content

Commit 6e17220

Browse files
authored
Update min version to 19.2b (#60)
1 parent 513a3e5 commit 6e17220

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

highscores/lib.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -588,9 +588,8 @@ def check_generic_game_settings(score_obj: Score, auto_or_teleop: str) -> Union[
588588
""" Checks if the universal game settings are valid.
589589
:return: None if the settings are valid, or a response with an error message if they are not.
590590
"""
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'):
591+
if (not score_obj.client_version or float(score_obj.client_version[1:5]) < 19.2
592+
or score_obj.client_version == 'v19.2a'):
594593
return WRONG_VERSION_MESSAGE
595594
if "_p" in score_obj.client_version:
596595
return PRERELEASE_MESSAGE

0 commit comments

Comments
 (0)