diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-15 01:05:34 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-15 01:05:34 +0300 |
| commit | 59e085f5398d0c07cfbe2820ff0ce373287cc477 (patch) | |
| tree | c78899585101e6a8f38c2e9d9dd1dc0522d16594 /weatbag/tiles | |
| parent | c46fa1f0e0d3a85802bbef0561be3a39ff4bdbcd (diff) | |
added leave direction N (n4w5)
Diffstat (limited to 'weatbag/tiles')
| -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 |
