diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-24 05:17:06 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:18 +0300 |
| commit | e701a9388c8939c9ce91731bb32f8404340180ef (patch) | |
| tree | ba0ed0c9292ba6162ab8775fc5df681779f466fd /weatbag/tiles/n1w1.py | |
| parent | 7dca2041d3ee309dc86bd9b0d84d5e470d83eedb (diff) | |
improved new lines! Woah!
Diffstat (limited to 'weatbag/tiles/n1w1.py')
| -rw-r--r-- | weatbag/tiles/n1w1.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/weatbag/tiles/n1w1.py b/weatbag/tiles/n1w1.py index 3a455cf..502caa9 100644 --- a/weatbag/tiles/n1w1.py +++ b/weatbag/tiles/n1w1.py @@ -1,18 +1,18 @@ class Tile: def describe(self): - print("\nThere is a small island northwest.\n" + print("There is a small island northwest.\n" "Unfortunatelly, you can't swim because the sea is full of " "electric eels so you need a transport to go there.\n" "Luckilly to the north you see 2 children with a raft sitting " - "under a tree." ) + "under a tree.\n" ) def action(self, player, do): - pass + print("Waitwat?!") def leave(self, player, direction): if direction == "w": - print ("\nYou can't go there by swimming, that part is full of " - "electric eels.") + print ("You can't go there by swimming, that part is full of " + "electric eels.\n") return False else: return True |
