summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
authorGeorge Angelopoulos <l4than.d3vers@gmail.com>2013-04-22 08:14:41 +0300
committerGeorge Angelopoulos <l4than.d3vers@gmail.com>2013-04-22 08:14:41 +0300
commit4af6ad330528179fe53b897c880116037b8a51bd (patch)
tree34d96f40d99c1c172d39d1e735ef234200112457 /weatbag
parent107257df0d103c879d1b7d39bbee9789051545e4 (diff)
Had forgotten to include a restricted direction
for the final bug quest tile.
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/tiles/s2e1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/weatbag/tiles/s2e1.py b/weatbag/tiles/s2e1.py
index 6fd2aec..0bd506d 100644
--- a/weatbag/tiles/s2e1.py
+++ b/weatbag/tiles/s2e1.py
@@ -25,7 +25,7 @@ class Tile:
print("It's not a bug, it's a feature!")
def leave(self, player, direction):
- restricted_directions = { 'w', 'e' }
+ restricted_directions = { 'w', 'e', 's' }
if direction in restricted_directions:
print("The undergrowth in that direction "
"is impassable. You turn back.")