diff options
| -rw-r--r-- | weatbag/tiles/n1w6.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/weatbag/tiles/n1w6.py b/weatbag/tiles/n1w6.py index 1435cd9..ab2da24 100644 --- a/weatbag/tiles/n1w6.py +++ b/weatbag/tiles/n1w6.py @@ -14,5 +14,6 @@ class Tile: print("My dear traveler, you can't go there, you will fall of the " "cliff!\n") return False - else: + elif direction in('e', 'n'): + print("You follow tha path downhill.") return True |
