From e701a9388c8939c9ce91731bb32f8404340180ef Mon Sep 17 00:00:00 2001 From: Kleopatra Angelidi Date: Wed, 24 Apr 2013 05:17:06 +0300 Subject: improved new lines! Woah! --- weatbag/tiles/n2w5.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'weatbag/tiles/n2w5.py') diff --git a/weatbag/tiles/n2w5.py b/weatbag/tiles/n2w5.py index 7277343..85ed1ff 100644 --- a/weatbag/tiles/n2w5.py +++ b/weatbag/tiles/n2w5.py @@ -7,26 +7,26 @@ class Tile: def describe(self): if self.contents['catfood']: - print("\nYou look around and you see a shelf with catfood cans.\n" + print("You look around and you see a shelf with catfood cans.\n" "I don't know about you, but a catfood can is always handy!\n" - "Never know when you'll need to feed a kitty!") + "Never know when you'll need to feed a kitty!\n") def action(self, player, do): if (do[0] in words.take) and ('catfood' in do): self.take_catfood(player) self.contents['catfood'] -= 1 else: - print("Sorry, I don't understand.") + print("Sorry, I don't understand.\n") def take_catfood(self, player): if transfer('catfood', self.contents, player.inventory, n=2): - print("\nYou did wise. You took the catfood!") + print("You did wise. You took the catfood!\n") else: - print("\nThere is nothing here.") + print("There is nothing here.\n") def leave(self, player, direction): if direction == 'w'or direction == 's' or direction == 'n': - print("Area 51. No trespassing beyond this point.") + print("Area 51. No trespassing beyond this point.\n") return False else: return True -- cgit v1.3