Timer display and balanced algorithm
-Makes this file support these too
This commit is contained in:
parent
17b18eb630
commit
ff3420cab7
|
@ -232,9 +232,9 @@ class World(object):
|
|||
goal = ['ganon', 'pedestal', 'dungeons', 'triforcehunt', 'crystals'].index(self.goal)
|
||||
shuffle = ['vanilla', 'simple', 'restricted', 'full', 'madness', 'insanity', 'dungeonsfull', 'dungeonssimple'].index(self.shuffle)
|
||||
difficulty = ['easy', 'normal', 'hard', 'expert', 'insane'].index(self.difficulty)
|
||||
timer = ['none', 'timed', 'timed-ohko', 'timed-countdown'].index(self.timer)
|
||||
timer = ['none', 'display', 'timed', 'timed-ohko', 'timed-countdown'].index(self.timer)
|
||||
progressive = ['on', 'off', 'random'].index(self.progressive)
|
||||
algorithm = ['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26'].index(self.algorithm)
|
||||
algorithm = ['freshness', 'flood', 'vt21', 'vt22', 'vt25', 'vt26', 'balanced'].index(self.algorithm)
|
||||
beatableonly = 1 if self.check_beatable_only else 0
|
||||
shuffleganon = 1 if self.shuffle_ganon else 0
|
||||
keysanity = 1 if self.keysanity else 0
|
||||
|
|
Loading…
Reference in New Issue