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/n1w1.py | |
| parent | b47436bbeb671c409bbe7d795fcf7294b8779581 (diff) | |
changed indentation on strings for visibility
Diffstat (limited to 'weatbag/tiles/n1w1.py')
| -rw-r--r-- | weatbag/tiles/n1w1.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/weatbag/tiles/n1w1.py b/weatbag/tiles/n1w1.py index 502caa9..f809dc4 100644 --- a/weatbag/tiles/n1w1.py +++ b/weatbag/tiles/n1w1.py @@ -1,10 +1,10 @@ class Tile: def describe(self): print("There is a small island northwest.\n" - "Unfortunatelly, you can't swim because the sea is full of " - "electric eels so you need a transport to go there.\n" - "Luckilly to the north you see 2 children with a raft sitting " - "under a tree.\n" ) + "Unfortunatelly, you can't swim because the sea is full of " + "electric eels so you need a transport to go there.\n" + "Luckilly to the north you see 2 children with a raft sitting " + "under a tree.\n" ) def action(self, player, do): print("Waitwat?!") @@ -12,7 +12,7 @@ class Tile: def leave(self, player, direction): if direction == "w": print ("You can't go there by swimming, that part is full of " - "electric eels.\n") + "electric eels.\n") return False else: return True |
