diff options
| -rw-r--r-- | weatbag/tiles/n2w4.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/weatbag/tiles/n2w4.py b/weatbag/tiles/n2w4.py index a427d5e..2e917ea 100644 --- a/weatbag/tiles/n2w4.py +++ b/weatbag/tiles/n2w4.py @@ -30,9 +30,13 @@ class Tile: print("\nSorry, I don't understand.") def leave(self, player, direction): - if direction=='w' and not self.opendoor: + if direction == 'w' and not self.opendoor: print("\nFirst you need to enter the hut.") return False + elif direction == 's': + print("Meeeeh, nothing of importance is going on there, try " + "another direction.") + return False else: return True |
