summaryrefslogtreecommitdiffstats
path: root/weatbag/tiles/n5w5.py
diff options
context:
space:
mode:
Diffstat (limited to 'weatbag/tiles/n5w5.py')
-rw-r--r--weatbag/tiles/n5w5.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/weatbag/tiles/n5w5.py b/weatbag/tiles/n5w5.py
index eed7c1c..c5e214b 100644
--- a/weatbag/tiles/n5w5.py
+++ b/weatbag/tiles/n5w5.py
@@ -2,13 +2,15 @@ from weatbag import words
from weatbag.utils import transfer
class Tile:
+ map_word = "Kiosk"
+
def __init__(self):
self.contents = {"cream": 1}
self.challenge_completed = False
def describe(self):
print("You are on the beach. You see a small kiosk selling "
- "ice creams!\n")
+ "ice cream!\n")
if not self.challenge_completed:
self.challenge()