diff options
| -rw-r--r-- | weatbag/tiles/n2w6.py | 5 |
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 |
