From e30ffaf7bec7215d5a8cf809ed0cedd5530aa7e9 Mon Sep 17 00:00:00 2001 From: CrossyChainsaw <74303221+CrossyChainsaw@users.noreply.github.com> Date: Mon, 24 Jun 2024 14:45:37 +0200 Subject: [PATCH] Minor Bug Fix --- modules/elo_list.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/elo_list.py b/modules/elo_list.py index a7bf9867..2dd86908 100644 --- a/modules/elo_list.py +++ b/modules/elo_list.py @@ -29,7 +29,7 @@ async def clan_console_mix_1v1_elo_list(clan:Clan, bot): rm_players = clan.account_linkers clan_players = [p for p in clan_players if p['brawlhalla_id'] not in rm_players] # Get Elo - clan_player_objects, _ = await get_players_elo_1v1_and_2v2(clan, clan_players, clan.clan_names[i], x=1) + clan_player_objects, _ = await get_players_elo_1v1_and_2v2(clan, clan_players, clan.clan_names[i]) all_player_objects_array.append(clan_player_objects) # Restructure the array with all players all_player_objects_array_restructured = __fix_structure(all_player_objects_array)