How hard is it to refactor a dice module
This commit is contained in:
parent
349c9a0190
commit
9054ee7cd2
1 changed files with 1 additions and 1 deletions
|
@ -25,5 +25,5 @@ class Module(ModuleManager.BaseModule):
|
||||||
if len(results) > 1:
|
if len(results) > 1:
|
||||||
total = " (total: %d)" % total_n
|
total = " (total: %d)" % total_n
|
||||||
|
|
||||||
event["stdout"].write("Rolled %s and got %s%s" % (
|
event["stdout"].write("Rolled %s and got %d%s" % (
|
||||||
roll, total_n, ", ".join(str(r) for r in results)))
|
roll, total_n, ", ".join(str(r) for r in results)))
|
||||||
|
|
Loading…
Add table
Reference in a new issue