summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
authorGeorge Angelopoulos <l4than.d3vers@gmail.com>2013-04-22 07:28:01 +0300
committerGeorge Angelopoulos <l4than.d3vers@gmail.com>2013-04-22 07:28:01 +0300
commit107257df0d103c879d1b7d39bbee9789051545e4 (patch)
tree27b9cfcc8940172eef12cc66508e42322f901c68 /weatbag
parent720badd4dcf23054e44ae9111063c4c2ffa4c329 (diff)
forgot to write 'self.' before a variable
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/tiles/s1e1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/weatbag/tiles/s1e1.py b/weatbag/tiles/s1e1.py
index 1db29e3..3e11d37 100644
--- a/weatbag/tiles/s1e1.py
+++ b/weatbag/tiles/s1e1.py
@@ -33,7 +33,7 @@ class Tile:
print("The undergrowth in that direction "
"is impassable. You turn back.")
return False
- elif direction == 's' and hasnt_gone_south:
+ elif direction == 's' and self.hasnt_gone_south:
print("Bugs are the enemy and must be crushed!\n"
"So you decide to follow the bug upstream.")
input()