results
was already a ", ".joined string
This commit is contained in:
parent
8e5415b887
commit
b008bb2a0f
1 changed files with 0 additions and 1 deletions
|
@ -31,7 +31,6 @@ class Module(ModuleManager.BaseModule):
|
||||||
results.append(random.randint(1, sides_of_die))
|
results.append(random.randint(1, sides_of_die))
|
||||||
|
|
||||||
total_n = sum(results)
|
total_n = sum(results)
|
||||||
results = ', '.join(map(str, results))
|
|
||||||
total = ""
|
total = ""
|
||||||
if len(results) > 1:
|
if len(results) > 1:
|
||||||
total = " (total: %d)" % total_n
|
total = " (total: %d)" % total_n
|
||||||
|
|
Loading…
Reference in a new issue