summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w3.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-24 05:17:06 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:18 +0300
commite701a9388c8939c9ce91731bb32f8404340180ef (patch)
treeba0ed0c9292ba6162ab8775fc5df681779f466fd /weatbag/tiles/n3w3.py
parent7dca2041d3ee309dc86bd9b0d84d5e470d83eedb (diff)
improved new lines! Woah!
Diffstat (limited to 'weatbag/tiles/n3w3.py')
-rw-r--r--weatbag/tiles/n3w3.py14
1 files changed, 7 insertions, 7 deletions
diff --git a/weatbag/tiles/n3w3.py b/weatbag/tiles/n3w3.py
index 8ccf76f..f325428 100644
--- a/weatbag/tiles/n3w3.py
+++ b/weatbag/tiles/n3w3.py
@@ -7,23 +7,23 @@ class Tile:
def describe(self):
if self.contents['doorknob']:
- print("\nAs you walk through the path you find something shiny on "
- "the ground beside some rocks.\nIt looks like a brass 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")
else:
- print("\nThere is nothing to do here, all you see is your path and "
- "the trees around!")
+ print("There is nothing to do here, all you see is your path and "
+ "the trees around!\n")
def action(self, player, do):
if (do[0] in words.take) and ('doorknob' in do):
self.take_doorknob(player)
else:
- print("\nSorry, I don't understand.")
+ print("Sorry, I don't understand.\n")
def take_doorknob(self, player):
if transfer('doorknob', self.contents, player.inventory):
- print("\nYou pick up the doorknob.")
+ print("You pick up the doorknob.\n")
else:
- print("\nThere is nothing here.")
+ print("There is nothing here.\n")
def leave(self, player, direction):
if direction == "n":