From 95494cab890ac0801ddac8e97953286320934cce Mon Sep 17 00:00:00 2001 From: Josh Wright Date: Sun, 18 Feb 2024 13:39:45 -0500 Subject: [PATCH] app.py: change game score calculation --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 3b05f9e..b04ec7f 100644 --- a/app.py +++ b/app.py @@ -180,7 +180,7 @@ def calculate_game_priority(game): home_score = game["homeTeam"]["score"] away_score = game["awayTeam"]["score"] score_difference = abs(home_score - away_score) - score_total = (home_score + away_score) * 15 + score_total = (home_score + away_score) * 20 if period == 4: base_priority = 400