diff options
| author | 2018-09-09 07:38:14 +0100 | |
|---|---|---|
| committer | 2018-09-09 07:38:14 +0100 | |
| commit | 20339d0a648ac9bf14c25108b049e1092bb50a0f (patch) | |
| tree | da0ef889e8b9a1347efed7bb97c7471375cedf95 | |
| parent | A shakespear insult generator, with optional target. Because why not? (diff) | |
| signature | ||
Grammar fix
| -rw-r--r-- | modules/shakespeare.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/shakespeare.py b/modules/shakespeare.py index db512337..38b2ac49 100644 --- a/modules/shakespeare.py +++ b/modules/shakespeare.py @@ -1,7 +1,7 @@ import random import Utils -INSULT_INTRO = ["Thou art", "Ye", "Thou", "Thy", "Thee"] +INSULT_INTRO = ["Thou art a", "Ye", "Thou", "Thy", "Thee"] INSULT_PART_1 = ["artless", "bawdy", "beslubbering", "bootless", "churlish", "cockered", "clouted", "craven", "currish", "dankish", @@ -71,4 +71,4 @@ class Module(object): target = Utils.bold(event["server"].get_user( event["args_split"][0]).nickname) + ", " - event["stdout"].write(target + insult) + event["stdout"].write(target + insult + "!") |
