From f45973b914f3278dd76e1b0f1af14051dd805ac3 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 23 Jun 2024 18:34:37 +0100 Subject: [PATCH] add missing counts to cybermods table --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index 4f82036..e545195 100644 --- a/app.py +++ b/app.py @@ -285,6 +285,7 @@ def roll_cybermods(): cybermods_count = roll_dices(1, 4, False)["result"] phys_cnt = split_number(cybermods_count)[0] ment_cnt = split_number(cybermods_count)[1] + cybermods_table['count'] = {'mental': ment_cnt, 'physical': phys_cnt} mental_cybermods_scores = [] physical_cybermods_scores = []