Update for Tomb of Sargeras

This commit is contained in:
aikaterna
2017-07-15 10:43:34 -07:00
parent fb24b3b38a
commit d53dbeddbb

View File

@@ -174,6 +174,7 @@ class Pug:
tov_progress = self.get_raid_progression(player_dict, "Trial of Valor")
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")
mythic_progress = self.get_mythic_progression(player_dict)
armory_url = 'http://{}.battle.net/wow/{}/character/{}/{}/advanced'.format(
@@ -206,6 +207,10 @@ class Pug:
nh_progress["normal"],
nh_progress["heroic"],
nh_progress["mythic"])
return_string += "[TOS]: {1}/{0} (N), {2}/{0} (H), {3}/{0} (M)\n".format(tos_progress["total_bosses"],
tos_progress["normal"],
tos_progress["heroic"],
tos_progress["mythic"])
# Gems
return_string += "[Gems Equipped]: %s/%s\n" % (
sockets["equipped_gems"], sockets["total_sockets"])