diff options
| -rw-r--r-- | weatbag/tiles/n2w1.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weatbag/tiles/n2w1.py b/weatbag/tiles/n2w1.py index ecc4eb7..aa54ca2 100644 --- a/weatbag/tiles/n2w1.py +++ b/weatbag/tiles/n2w1.py @@ -64,8 +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' + elif direction == 'e': print("There is a cave this way. You can't go from here though.") - return False + return False else: return True |
