diff options
| -rw-r--r-- | weatbag/tiles/n1w4.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index dde04fc..22e2fb0 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -64,5 +64,8 @@ class Tile: "Since you don't walk though walls (yet) " "you can't go there.\n") return False + elif direction == "e": + print("You follow the path downhill.") + return True else: return True |
