summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n3w1.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/n3w1.py
parentdda68706253ebfeb6113ab764670309e2b347411 (diff)
added some /n for teh l00ks!!1!
Diffstat (limited to 'weatbag/tiles/n3w1.py')
-rw-r--r--weatbag/tiles/n3w1.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/weatbag/tiles/n3w1.py b/weatbag/tiles/n3w1.py
index 5eb7d18..8ff6a6c 100644
--- a/weatbag/tiles/n3w1.py
+++ b/weatbag/tiles/n3w1.py
@@ -1,17 +1,17 @@
class Tile:
def describe(self):
- print("The beach is quiet. You see on the south children playing.")
+ print("\nThe beach is quiet. On the south are children playing.")
def action(self, player, do):
- print("Sorry, I don't understand")
+ print("\nSorry, I don't understand")
def leave(self, player, direction):
if direction=='w':
- print("I'm afraid you can't go west.\nThe sea on that part is "
+ print("\nI'm afraid you can't go west.\nThe sea on that part is "
"fool of electric eels and you don't have a transport.")
return False
elif direction=='e':
- print("There is the side of a cave in front of you.\nYou can't go "
+ print("\nThere is the side of a cave in front of you.\nYou can't go "
"east.")
return False
return True