diff options
| author | 2018-09-08 16:15:43 +0100 | |
|---|---|---|
| committer | 2018-09-08 16:15:43 +0100 | |
| commit | ac1eef729c929749413cdee31d8ab4643260b7d5 (patch) | |
| tree | eccf4d757e061bd32a1c18b2dfffbd1a0fb0bb1e /modules/8ball.py | |
| parent | Set 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.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))) |
