diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 22:35:47 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-05-07 22:35:47 +0300 |
| commit | 1c7f0b4ac925b3bab80819bfac0bfd8c934450a7 (patch) | |
| tree | 5955907815cdc68179538bfc125c766216387690 | |
| parent | 761f3f701baee46120f68a285ea148b241170f1e (diff) | |
added leave W description (n1w5)
| -rw-r--r-- | weatbag/tiles/n1w5.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/weatbag/tiles/n1w5.py b/weatbag/tiles/n1w5.py index 558c0dc..3b84a22 100644 --- a/weatbag/tiles/n1w5.py +++ b/weatbag/tiles/n1w5.py @@ -40,5 +40,8 @@ class Tile: "Since you don't walk though walls (yet) " "you can't go there.\n") return False + elif direction == "w": + print("You follow the path uphill.") + return True else: return True |
