@@ -130,7 +130,7 @@ class Plot: | |||
self.oops = int(oops) if oops != None else r.randint(1,12) | |||
if self.oops != 1: | |||
self.oops = 0 | |||
self.mission = Plot.miss[missIndex] | |||
self.mission = Plot.miss[self.missIndex] | |||
self.probIndex = probIndex if probIndex != None else r.randint(0, len(Plot.prob)-1) | |||
self.problem = Plot.prob[self.probIndex] | |||
self.secProblem = [x for x in Plot.prob if x["id"] == secProblem][0] if (secProblem != None and secProblem in list(filter(lambda x:x["id"], Plot.prob))) else None |