diff --git a/highscores/lib.py b/highscores/lib.py index a8de927..fff5142 100644 --- a/highscores/lib.py +++ b/highscores/lib.py @@ -588,9 +588,8 @@ def check_generic_game_settings(score_obj: Score, auto_or_teleop: str) -> Union[ """ Checks if the universal game settings are valid. :return: None if the settings are valid, or a response with an error message if they are not. """ - if (not score_obj.client_version or float(score_obj.client_version[1:5]) < 19.1 - or score_obj.client_version == 'v16.1a' or score_obj.client_version == 'v16.1b' - 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'): return WRONG_VERSION_MESSAGE if "_p" in score_obj.client_version: return PRERELEASE_MESSAGE