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