diff options
| -rw-r--r-- | weatbag/tiles/n1w5.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weatbag/tiles/n1w5.py b/weatbag/tiles/n1w5.py index 7767bf9..2f308cb 100644 --- a/weatbag/tiles/n1w5.py +++ b/weatbag/tiles/n1w5.py @@ -39,8 +39,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.") + elif direction == "e": + print("You follow the path downhill.") return True else: return True |
