summaryrefslogtreecommitdiffstats
path: root/weatbag/words.py
diff options
context:
space:
mode:
authorGeorge Angelopoulos <l4than.d3vers@gmail.com>2013-05-01 02:02:53 +0300
committerGeorge Angelopoulos <l4than.d3vers@gmail.com>2013-05-01 02:02:53 +0300
commit689563831f55feaa4315c66773b63a49a93c70b9 (patch)
tree07ffd6c5f76041f849d8028f130faf23b950972a /weatbag/words.py
parent855da677c4aadd68e0adb16b7ef833a4f27a2153 (diff)
Made all yes/no words lowercase. Upper not needed.
Apparently, player input is converted to lowercase in weatbag/action.py, so we only need lowercase words in weatbag/words.py.
Diffstat (limited to 'weatbag/words.py')
-rw-r--r--weatbag/words.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/weatbag/words.py b/weatbag/words.py
index 3555046..05661aa 100644
--- a/weatbag/words.py
+++ b/weatbag/words.py
@@ -25,5 +25,5 @@ surroundings = {'surroundings', 'around', 'scenery'}
prepositions = {'up', 'down', 'on', 'under', 'in', 'at', 'to', 'with', 'and'}
# yes/no
-yes = {'yes','Yes','y','Y','Yup','yup','ye','Ye'}
-no = {'no','No','n','N','Nope','nope','NOPE'}
+yes = {'yes','y','yup','ye'}
+no = {'no','n','nope'}