diff options
| -rw-r--r-- | weatbag/tiles/n3w6.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weatbag/tiles/n3w6.py b/weatbag/tiles/n3w6.py index a40e490..b50be06 100644 --- a/weatbag/tiles/n3w6.py +++ b/weatbag/tiles/n3w6.py @@ -14,5 +14,8 @@ class Tile: print("You follow the path uphill. Just be careful of the slipery " "rocks.") return True + elif direction == "n": + print("You are almost down at the beach.") + return True else: return True |
