diff options
| -rw-r--r-- | weatbag/tiles/n3w4.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/weatbag/tiles/n3w4.py b/weatbag/tiles/n3w4.py index fff19cf..2388ee3 100644 --- a/weatbag/tiles/n3w4.py +++ b/weatbag/tiles/n3w4.py @@ -7,3 +7,13 @@ class Tile: def action(self, player, do): print("\nSorry, I don't understand") + + def leave(self, player, direction): + if direction == "n": + print("No trespasing. Violators will vanish without a trace.\n") + return False + elif direction == "w": + print("No trespasing. Violators will vanish without a trace.\n") + return False + else: + return True |
