How hard is it to refactor a dice module

This commit is contained in:
jesopo 2018-11-17 12:25:14 +00:00
parent 349c9a0190
commit 9054ee7cd2

View file

@ -25,5 +25,5 @@ class Module(ModuleManager.BaseModule):
if len(results) > 1:
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)))