diff options
Diffstat (limited to 'modules/8ball.py')
| -rw-r--r-- | modules/8ball.py | 4 |
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))) |
