From f38fcd89391cf2839c90d22635749ef8ae2097c6 Mon Sep 17 00:00:00 2001 From: Lukas Date: Mon, 21 Mar 2022 18:27:24 +0100 Subject: [PATCH] rwf command now adds the number of guilds finished --- src/commands.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/commands.py b/src/commands.py index 2374637..a4651ad 100644 --- a/src/commands.py +++ b/src/commands.py @@ -211,9 +211,11 @@ def rwf(self): if entry['totalGuilds'] > 0: prog_done += 1 + guilds_done = data['progression'][prog_done]['totalGuilds'] + prog_min = prog_done prog_max = len(data['progression']) - channelname = f"[cspacerC3]Sepulcher {prog_min}/{prog_max}" + channelname = f"[cspacerC3]Sepulcher {prog_min}/{prog_max} ({guilds_done})" try: self.editChannelname(205, channelname)