diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-23 15:36:40 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-23 15:36:40 +0300 |
| commit | 635e161a3bf7866105cb78c9ada29d4d4ddb6aa6 (patch) | |
| tree | 7ff2eec1fa876ce5e6b5a189ff8e96c6f545b84c /weatbag/tiles/n1w4.py | |
| parent | d9d5b16dc1c6c0ba39cff8641858bdd0d2642f83 (diff) | |
removed last /n from action and leave functions
Diffstat (limited to 'weatbag/tiles/n1w4.py')
| -rw-r--r-- | weatbag/tiles/n1w4.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index c427e9f..6dfdde7 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -46,7 +46,7 @@ class Tile: "If you ever come across a wall of kittens and you want " "them to let you pass you will use this lucky charm!\n\n" "And as the cat says these words, " - "*poof* she disappears!\n") + "*poof* she disappears!") #https://en.wikipedia.org/wiki/Maneki-neko self.contents['neko'] -= 1 player.give('neko') @@ -59,12 +59,12 @@ class Tile: def leave(self, player, direction): if direction == "s": print("Oh dear Basdet! You can't go south, you will fall of the " - "cliff!\n") + "cliff!") return False elif direction == "n": print("It looks like the side of a wooden hut.\n" "Since you don't walk though walls (yet) " - "you can't go there.\n") + "you can't go there.") return False elif direction == "e": print("You follow the path downhill.") |
