diff options
Diffstat (limited to 'weatbag/tiles/n2.py')
| -rw-r--r-- | weatbag/tiles/n2.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/weatbag/tiles/n2.py b/weatbag/tiles/n2.py index 0f8da93..32e3ce4 100644 --- a/weatbag/tiles/n2.py +++ b/weatbag/tiles/n2.py @@ -2,7 +2,9 @@ from weatbag import words class Tile: def describe(self): - print("You are standing in the mouth of a cave. The air feels cool.") + print("You are standing in the mouth of a cave. The air feels cool and " + "is filled with the stench of rotting flesh. " + "A dark path leads to the north. An exit to the south.") def leave(self, player, direction): if direction=='s': |
