diff --git a/modules/dice.py b/modules/dice.py
index a3456c82..48c0f920 100644
--- a/modules/dice.py
+++ b/modules/dice.py
@@ -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)))