diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-14 04:10:31 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-14 04:10:31 +0300 |
| commit | 0044da648e39c5bdd1e2df872d8b96681c8dd135 (patch) | |
| tree | 5cb7e84db4f8c891aea1a4053e1e28173e384eab | |
| parent | a85623efc76535b6260a7abb2283b5399a697c23 (diff) | |
removed leave restriction for west (n3w4)
| -rw-r--r-- | weatbag/tiles/n3w4.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weatbag/tiles/n3w4.py b/weatbag/tiles/n3w4.py index aeb58f9..ba38ce6 100644 --- a/weatbag/tiles/n3w4.py +++ b/weatbag/tiles/n3w4.py @@ -10,7 +10,7 @@ class Tile: print("Sorry, I don't understand.\n") def leave(self, player, direction): - if direction in ('n', 'w'): + if direction == "n": print("No trespasing. Violators will vanish without a trace.\n") return False else: |
