diff --git a/app/scoreboard/process_data.py b/app/scoreboard/process_data.py index 6af9121..9993e10 100644 --- a/app/scoreboard/process_data.py +++ b/app/scoreboard/process_data.py @@ -85,7 +85,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) * 25 + score_total = (home_score + away_score) * 20 # Get standings for home and away teams home_team_standings = get_team_standings(game["homeTeam"]["name"]["default"])