From c223197ed8f5b872040501973da9343375ff26a7 Mon Sep 17 00:00:00 2001 From: Nicholas Bottone Date: Mon, 8 Jan 2024 10:04:33 -0500 Subject: [PATCH] Update minimum required client version to 13.1 --- highscores/lib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/highscores/lib.py b/highscores/lib.py index 8ae3bde..c7f1caf 100644 --- a/highscores/lib.py +++ b/highscores/lib.py @@ -325,7 +325,7 @@ 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]) < 11.0): + if (not score_obj.client_version or float(score_obj.client_version[1:5]) < 13.1): # or score_obj.client_version == 'v10.4a' or score_obj.client_version == 'v10.4b' return WRONG_VERSION_MESSAGE if "_p" in score_obj.client_version: