From 6d1a17c456b15841763b953a1427e8bd856f2263 Mon Sep 17 00:00:00 2001 From: Ben Friedland Date: Mon, 7 Jan 2013 22:24:09 -0800 Subject: Fixed leave condition at cave entrance. --- weatbag/tiles/n3.py | 5 +++++ 1 file changed, 5 insertions(+) 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": -- cgit v1.3