Skip to content

Commit 513a3e5

Browse files
authored
Bump minimum game version to 19.1 (#58)
1 parent 8955f03 commit 513a3e5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

highscores/lib.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,7 @@ 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]) < 16.1
591+
if (not score_obj.client_version or float(score_obj.client_version[1:5]) < 19.1
592592
or score_obj.client_version == 'v16.1a' or score_obj.client_version == 'v16.1b'
593593
or score_obj.client_version == 'v16.1c'):
594594
return WRONG_VERSION_MESSAGE

0 commit comments

Comments
 (0)