summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n2w6.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-05-07 22:32:04 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-05-07 22:32:04 +0300
commit761f3f701baee46120f68a285ea148b241170f1e (patch)
tree17e87591bda9f937ab6bda18e8918cb3fcdd6fb1 /weatbag/tiles/n2w6.py
parentd64782af2b35d29c783b5687482209f6b42651ff (diff)
added leave description for South (n2w6)
Diffstat (limited to 'weatbag/tiles/n2w6.py')
-rw-r--r--weatbag/tiles/n2w6.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/weatbag/tiles/n2w6.py b/weatbag/tiles/n2w6.py
index 919f230..01ab28b 100644
--- a/weatbag/tiles/n2w6.py
+++ b/weatbag/tiles/n2w6.py
@@ -12,10 +12,13 @@ class Tile:
print("My dear traveler, you can't fall of the cliff! "
"I won't let you do it.\n")
return False
- elif direction == "n":
+ elif direction == "e":
print("It looks like the back of a wooden hut.\n"
"Since you don't walk though walls (yet) "
"you can't go there.\n")
return False
+ elif direction == "s":
+ print("You follow the path uphill.")
+ return True
else:
return True