summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w3.py
diff options
context:
space:
mode:
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