diff options
| -rw-r--r-- | weatbag/tiles/n2w1.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weatbag/tiles/n2w1.py b/weatbag/tiles/n2w1.py index 6ce8301..ecc4eb7 100644 --- a/weatbag/tiles/n2w1.py +++ b/weatbag/tiles/n2w1.py @@ -64,5 +64,8 @@ class Tile: print ("You can't go there by swimming, that part is full of " "electric eels.\n") return False + elif direction == 'e' + print("There is a cave this way. You can't go from here though.") + return False else: return True |
