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