From ffb23b839dc3b0b07c67b78cce26fb3d99b2d7e7 Mon Sep 17 00:00:00 2001 From: aikaterna Date: Sat, 2 Dec 2017 15:16:04 -0800 Subject: [PATCH] Update for Antorus, the Burning Throne --- pug/pug.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pug/pug.py b/pug/pug.py index 16ccc64..44b609c 100644 --- a/pug/pug.py +++ b/pug/pug.py @@ -175,6 +175,7 @@ class Pug: en_progress = self.get_raid_progression(player_dict, "The Emerald Nightmare") nh_progress = self.get_raid_progression(player_dict, "The Nighthold") tos_progress = self.get_raid_progression(player_dict, "Tomb of Sargeras") + ant_progress = self.get_raid_progression(player_dict, "Antorus, the Burning Throne") mythic_progress = self.get_mythic_progression(player_dict) armory_url = 'http://{}.battle.net/wow/{}/character/{}/{}/advanced'.format( @@ -211,6 +212,10 @@ class Pug: tos_progress["normal"], tos_progress["heroic"], tos_progress["mythic"]) + return_string += "[ANT]: {1}/{0} (N), {2}/{0} (H), {3}/{0} (M)\n".format(ant_progress["total_bosses"], + ant_progress["normal"], + ant_progress["heroic"], + ant_progress["mythic"]) # Gems return_string += "[Gems Equipped]: %s/%s\n" % ( sockets["equipped_gems"], sockets["total_sockets"])