From f2e1213b5ad3af4f33ab1f72d3144b9717ba7251 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Fri, 26 Jan 2024 00:32:13 -0500 Subject: [PATCH] Fix tuples showing in !gamestats / !mystats for special roles, fixes #522 --- src/db/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/__init__.py b/src/db/__init__.py index c45289e1..5fd2257d 100644 --- a/src/db/__init__.py +++ b/src/db/__init__.py @@ -371,7 +371,7 @@ def get_player_totals(acc): #ordered role stats totals = [messages["db_role_games"].format(r, *tmp[r]) for r in order if r in tmp] #lover or any other special stats - totals += [messages["db_role_games"].format(r, t) for r, t in tmp.items() if r not in order] + totals += [messages["db_role_games"].format(r, *t) for r, t in tmp.items() if r not in order] count_games = _countable_games(peid) if count_games == 0: wonp = 1