summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w3.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-28 21:31:57 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:18 +0300
commit4958709926e2eaf37b8311a86d42b32821703354 (patch)
tree51926baef8551f5d2116411f187df3ed5e0946ca /weatbag/tiles/n3w3.py
parentb47436bbeb671c409bbe7d795fcf7294b8779581 (diff)
changed indentation on strings for visibility
Diffstat (limited to 'weatbag/tiles/n3w3.py')
-rw-r--r--weatbag/tiles/n3w3.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/weatbag/tiles/n3w3.py b/weatbag/tiles/n3w3.py
index f325428..d2977c4 100644
--- a/weatbag/tiles/n3w3.py
+++ b/weatbag/tiles/n3w3.py
@@ -8,10 +8,11 @@ class Tile:
def describe(self):
if self.contents['doorknob']:
print("As you walk through the path you find something shiny on "
- "the ground beside some rocks.\nIt looks like a brass doorknob.\n")
+ "the ground beside some rocks.\n"
+ "It looks like a brass doorknob.\n")
else:
print("There is nothing to do here, all you see is your path and "
- "the trees around!\n")
+ "the trees around!\n")
def action(self, player, do):
if (do[0] in words.take) and ('doorknob' in do):
self.take_doorknob(player)
@@ -27,7 +28,7 @@ class Tile:
def leave(self, player, direction):
if direction == "n":
- print("Oops. You can't go there. There is a rocky wall.\n")
+ print("Oops! You can't go there. There is a rocky wall.\n")
return False
else:
return True