diff options
| author | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-21 17:52:50 +0300 |
|---|---|---|
| committer | Kleopatra Angelidi <akleop@gmail.com> | 2013-04-29 03:21:17 +0300 |
| commit | 5449d4c2bc6631c3951327b9c57f01b643e4101e (patch) | |
| tree | e8c1da079e5be5488263c67054098ba2c05d203e | |
| parent | 4fb5aba4c45300d325526d48cca92c15bd5e9c6f (diff) | |
fixed challenge completion checks
| -rw-r--r-- | weatbag/tiles/n2w1.py | 6 |
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!") |
