summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--weatbag/tiles/s1e1.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/weatbag/tiles/s1e1.py b/weatbag/tiles/s1e1.py
index a29c2d2..854bedd 100644
--- a/weatbag/tiles/s1e1.py
+++ b/weatbag/tiles/s1e1.py
@@ -4,7 +4,7 @@ import weatbag
class Tile:
def __init__(self):
- self.contents = {'bug': 1}
+ self.bug_is_here = True
self.first_visit = True
self.hasnt_gone_south = True
pass
@@ -13,10 +13,10 @@ class Tile:
print("There is a stream here. "
"It runs from South to North.")
- if self.contents['bug'] > 0:
+ if self.bug_is_here:
print("You see a huge, ugly bug rush past you, "
"following the river South.")
- self.contents['bug'] -= 1
+ self.bug_is_here = False
else:
print("You remember this is where you saw that bug going South.")