aboutsummaryrefslogtreecommitdiff
path: root/modules/8ball.py
diff options
context:
space:
mode:
authorGravatar dngfx2018-09-08 16:15:43 +0100
committerGravatar dongfix2018-09-08 16:15:43 +0100
commitac1eef729c929749413cdee31d8ab4643260b7d5 (patch)
treeeccf4d757e061bd32a1c18b2dfffbd1a0fb0bb1e /modules/8ball.py
parentSet unique user properly. (diff)
signature
New and fresh ducks.py! And an 8ball.py adjustment...!
Diffstat (limited to 'modules/8ball.py')
-rw-r--r--modules/8ball.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/8ball.py b/modules/8ball.py
index 39e786e0..1c058a28 100644
--- a/modules/8ball.py
+++ b/modules/8ball.py
@@ -1,4 +1,5 @@
import random
+import Utils
CHOICES = [
"Definitely",
@@ -26,4 +27,5 @@ class Module(object):
)
def decide(selfs, event):
- event["stdout"].write(random.choice(CHOICES))
+ event["stdout"].write("You shake the magic ball... it "
+ "says " + Utils.bold(random.choice(CHOICES)))