summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-21 17:52:50 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:17 +0300
commit5449d4c2bc6631c3951327b9c57f01b643e4101e (patch)
treee8c1da079e5be5488263c67054098ba2c05d203e /weatbag
parent4fb5aba4c45300d325526d48cca92c15bd5e9c6f (diff)
fixed challenge completion checks
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/tiles/n2w1.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/weatbag/tiles/n2w1.py b/weatbag/tiles/n2w1.py
index 0bd4238..03630b5 100644
--- a/weatbag/tiles/n2w1.py
+++ b/weatbag/tiles/n2w1.py
@@ -37,7 +37,7 @@ class Tile:
"Let's go!")
print("The brother and sister will take you to the "
"island.")
- challenge_not_completed = False
+ self.challenge_not_completed = False
else:
print("We're afraid this is not the correct answer. "
"Try another one.")
@@ -47,13 +47,13 @@ class Tile:
"What kind of an asshole are you? Taking advantage of "
"little children?\nWe will transfer you for free.")
print("The brother and sister take you to the island!")
- challenge_not_completed = False
+ self.challenge_not_completed = False
elif (do[0] in words.take) and (do[1] == "brother" or
do[1] == "boy"):
print("You bastard, take me down!\n"
"We will transfer you for free!")
print("The brother and sister take you to the island!")
- challenge_not_completed = False
+ self.challenge_not_completed = False
elif (do[0] in words.take) and self.challenge_not_completed:
print("I told you we won't give you our raft, "
"you have to guess the correct amount of time!")