diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-28 20:04:24 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:18 +0300 |
| commit | 7b0f5213239618f341c5700fec7b7aa4f13a690e (patch) | |
| tree | 2d63e51b7c2b16f7de938c4c2ccb7c0715fa8fa5 /weatbag | |
| parent | 508ec254dd08cdf3e428df408c9d6f0fe756166f (diff) | |
corrected syntax
Diffstat (limited to 'weatbag')
| -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 |
