summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w3.py
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-24 02:37:22 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:17 +0300
commita5e3812174ab28ef6be83a17a11f1e1da4e6651a (patch)
tree34d30b6ca39e78f79891afc50422cf720138d31f /weatbag/tiles/n3w3.py
parentdda68706253ebfeb6113ab764670309e2b347411 (diff)
added some /n for teh l00ks!!1!
Diffstat (limited to 'weatbag/tiles/n3w3.py')
-rw-r--r--weatbag/tiles/n3w3.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/weatbag/tiles/n3w3.py b/weatbag/tiles/n3w3.py
index 2989c04..42bec81 100644
--- a/weatbag/tiles/n3w3.py
+++ b/weatbag/tiles/n3w3.py
@@ -7,20 +7,20 @@ class Tile:
def describe(self):
if self.contents['doorknob']:
- print("As you walk through the path you find something shiny on "
+ print("\nAs you walk through the path you find something shiny on "
"the ground beside some rocks.\nIt looks like a brass doorknob.")
else:
- print("There is nothing to do here, all you see is your path and "
+ print("\nThere is nothing to do here, all you see is your path and "
"the trees around!")
def action(self, player, do):
if (do[0] in words.take) and ('doorknob' in do):
self.take_doorknob(player)
else:
- print("Sorry, I don't understand.")
+ print("\nSorry, I don't understand.")
def take_doorknob(self, player):
if transfer('doorknob', self.contents, player.inventory):
- print("You pick up the doorknob.")
+ print("\nYou pick up the doorknob.")
else:
- print("There is nothing here.")
+ print("\nThere is nothing here.")