From 857525c6710f3dbbaab5aeafd677ee68f313e030 Mon Sep 17 00:00:00 2001 From: Jack Roberts Date: Tue, 23 Jul 2024 21:18:36 +0100 Subject: [PATCH] GK goal points change --- airsenal/framework/FPL_scoring_rules.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airsenal/framework/FPL_scoring_rules.py b/airsenal/framework/FPL_scoring_rules.py index 325d8616..3ecb9394 100644 --- a/airsenal/framework/FPL_scoring_rules.py +++ b/airsenal/framework/FPL_scoring_rules.py @@ -2,7 +2,7 @@ How many points does FPL assign for goals, assists, clean sheets, appearances """ -points_for_goal = {"GK": 6, "DEF": 6, "MID": 5, "FWD": 4} +points_for_goal = {"GK": 10, "DEF": 6, "MID": 5, "FWD": 4} points_for_cs = {"GK": 4, "DEF": 4, "MID": 1, "FWD": 0}