diff options
| -rw-r--r-- | weatbag/tiles/n4w5.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/weatbag/tiles/n4w5.py b/weatbag/tiles/n4w5.py index 59208f3..0344000 100644 --- a/weatbag/tiles/n4w5.py +++ b/weatbag/tiles/n4w5.py @@ -10,5 +10,9 @@ class Tile: if direction == "e": print("Area 51. No trespassing beyond this point.") return False + elif direction == "n": + print("There is an opening that leads you to the beach on the " + "northen side of the island.\n") + return True else: return True |
