diff options
| author | Ben Friedland <ben174@gmail.com> | 2013-01-07 22:24:09 -0800 |
|---|---|---|
| committer | Ben Friedland <ben174@gmail.com> | 2013-01-07 22:24:09 -0800 |
| commit | 6d1a17c456b15841763b953a1427e8bd856f2263 (patch) | |
| tree | f9d811c670c60dc619ce7250ce54243e2760ecf2 /weatbag | |
| parent | bde94f80e518182888d944430bcfe7329d48e817 (diff) | |
Fixed leave condition at cave entrance.
Diffstat (limited to 'weatbag')
| -rw-r--r-- | weatbag/tiles/n3.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/weatbag/tiles/n3.py b/weatbag/tiles/n3.py index 992d7f2..7591110 100644 --- a/weatbag/tiles/n3.py +++ b/weatbag/tiles/n3.py @@ -53,6 +53,11 @@ class Tile: if direction=='s': return True + if direction=='n': + return True + + print("There is no path leading in that direction.") + return False def action(self, player, do): if do[0] == "flee": |
