diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-28 21:31:57 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:18 +0300 |
| commit | 4958709926e2eaf37b8311a86d42b32821703354 (patch) | |
| tree | 51926baef8551f5d2116411f187df3ed5e0946ca /weatbag/tiles/n2w2.py | |
| parent | b47436bbeb671c409bbe7d795fcf7294b8779581 (diff) | |
changed indentation on strings for visibility
Diffstat (limited to 'weatbag/tiles/n2w2.py')
| -rw-r--r-- | weatbag/tiles/n2w2.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weatbag/tiles/n2w2.py b/weatbag/tiles/n2w2.py index abd7f75..0957571 100644 --- a/weatbag/tiles/n2w2.py +++ b/weatbag/tiles/n2w2.py @@ -1,7 +1,7 @@ class Tile: def describe(self): print("You are now on the island. In front of you there are some trees " - "and a small path.\nFeeling adventurous?\n") + "and a small path.\nFeeling adventurous?\n") def action(self, player, do): print("Sorry, wat?!") @@ -9,7 +9,7 @@ class Tile: def leave(self, player, direction): if direction == "e": print("You can't go back by swimming, that part is full of " - "electric eels.\n") + "electric eels.\n") return False elif direction == "s": print("I'm afraid I can't let you go there Dave.\n") |
