Skip to content

Commit 850f070

Browse files
committed
fix wrong damage in bf6
1 parent dc5db3f commit 850f070

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

global_mapping/readability/bf6/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -634,7 +634,7 @@ async def get_main_stats(stats_dict: dict, format_values: bool = True):
634634
kills = stats_dict.get("Kills_Total", 0)
635635
deaths = stats_dict.get("deaths_total", 0)
636636
seconds = stats_dict.get("tp_gm_all", 0)
637-
damage = stats_dict.get("dmg_total", 0)
637+
damage = stats_dict.get("Dmg_Dealt_Total", 0)
638638
human_kills = stats_dict.get("human_kills_total", 0)
639639
headshot_amount = stats_dict.get("kills_Headshots_Total", 0)
640640
matches_played = stats_dict.get("played_match_total", 0)

tests/bf6/used_methods.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
"Kills_Total",
7979
"deaths_total",
8080
"tp_gm_all",
81-
"dmg_total",
81+
"Dmg_Dealt_Total",
8282
"human_kills_total",
8383
"kills_Headshots_Total",
8484
"played_match_total",

0 commit comments

Comments
 (0)