diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-19 15:14:18 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-19 15:14:18 +0300 |
| commit | aa84e7b52b4fc32c58f622f687f9d1c71bc855ee (patch) | |
| tree | f37ccc7a079066df0ad97155e2aac37c9bf84632 /weatbag/tiles/n2w6.py | |
| parent | b66b944ddec676081721a4903db2cbb646b8d27d (diff) | |
grammar fixed
Diffstat (limited to 'weatbag/tiles/n2w6.py')
| -rw-r--r-- | weatbag/tiles/n2w6.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/weatbag/tiles/n2w6.py b/weatbag/tiles/n2w6.py index 01ab28b..15e1610 100644 --- a/weatbag/tiles/n2w6.py +++ b/weatbag/tiles/n2w6.py @@ -2,19 +2,19 @@ class Tile: def describe(self): print("Big rocks around the place, and the sound of small waves at the " - "weastern sea makes you calm! \n") + "western sea makes you calm! \n") def action(self, player, do): print("Sorry, I don't understand.\n") def leave(self, player, direction): if direction == "w": - print("My dear traveler, you can't fall of the cliff! " + print("My dear traveler, you can't fall off the cliff! " "I won't let you do it.\n") return False elif direction == "e": print("It looks like the back of a wooden hut.\n" - "Since you don't walk though walls (yet) " + "Since you don't walk through walls (yet) " "you can't go there.\n") return False elif direction == "s": |
