summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n2w5.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/n2w5.py
parent7dca2041d3ee309dc86bd9b0d84d5e470d83eedb (diff)
improved new lines! Woah!
Diffstat (limited to 'weatbag/tiles/n2w5.py')
-rw-r--r--weatbag/tiles/n2w5.py12
1 files changed, 6 insertions, 6 deletions
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