This commit is contained in:
2025-06-28 18:12:09 +01:00
parent d48dd04af9
commit e66f7e0588
3 changed files with 11 additions and 4 deletions

View File

@@ -46,7 +46,7 @@ def valid_score(score, game_token):
current_time = datetime.datetime.now()
elapsed_time = (current_time - start_time).total_seconds()
if elapsed_time < score / 10 * 5 + 15: # assuming that each point takes 3 seconds to achieve and 15 seconds to start the game and do captcha
if elapsed_time < score / 10 * 5 + 15: # assuming that each point takes 5 seconds to achieve and 15 seconds to start the game and do captcha
log.error("Score is too high for the elapsed time.")
return False