diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 14:52:00 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-20 14:52:00 +0300 |
| commit | b64c888f6e7874ecf22023474bb0bf987ca39b4c (patch) | |
| tree | c25254c90dff2ed9da79a6457582acc9c707bb4d | |
| parent | 19b020356a50126cc15f998fda90c6993c30b8bf (diff) | |
leave description for E (n1w4)
| -rw-r--r-- | weatbag/tiles/n1w4.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weatbag/tiles/n1w4.py b/weatbag/tiles/n1w4.py index dde04fc..22e2fb0 100644 --- a/weatbag/tiles/n1w4.py +++ b/weatbag/tiles/n1w4.py @@ -64,5 +64,8 @@ class Tile: "Since you don't walk though walls (yet) " "you can't go there.\n") return False + elif direction == "e": + print("You follow the path downhill.") + return True else: return True |
