From 4958709926e2eaf37b8311a86d42b32821703354 Mon Sep 17 00:00:00 2001 From: Kleopatra Angelidi Date: Sun, 28 Apr 2013 21:31:57 +0300 Subject: changed indentation on strings for visibility --- weatbag/tiles/n3w3.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'weatbag/tiles/n3w3.py') 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 -- cgit v1.3