From b7d7881a119e0af002b534e7f5931dcd51f15bf5 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Sun, 23 Jun 2024 18:37:58 +0100 Subject: [PATCH] switch cybermod count assignments --- app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app.py b/app.py index e545195..50ff080 100644 --- a/app.py +++ b/app.py @@ -283,8 +283,8 @@ def roll_cybermods(): cybermods_table = {} cybermods_count = roll_dices(1, 4, False)["result"] - phys_cnt = split_number(cybermods_count)[0] - ment_cnt = split_number(cybermods_count)[1] + phys_cnt = split_number(cybermods_count)[1] # This ends up being the higher of the two numbers + ment_cnt = split_number(cybermods_count)[0] cybermods_table['count'] = {'mental': ment_cnt, 'physical': phys_cnt} mental_cybermods_scores = []