Update Rom.

This commit is contained in:
LLCoolDave
2017-07-18 13:42:33 +02:00
parent b6c4bf6bd6
commit 51943b17ef
4 changed files with 7 additions and 6 deletions

View File

@@ -210,7 +210,8 @@ class World(object):
difficulty = ['normal', 'timed', 'timed-ohko', 'timed-countdown'].index(self.difficulty)
algorithm = ['freshness', 'flood', 'vt21', 'vt22', 'restrictive'].index(self.algorithm)
beatableonly = 1 if self.check_beatable_only else 0
return logic | (beatableonly << 1) | (dungeonitems << 2) | (goal << 3) | (shuffle << 6) | (difficulty << 10) | (algorithm << 12) | (mode << 15)
shuffleganon = 1 if self.shuffle_ganon else 0
return logic | (beatableonly << 1) | (dungeonitems << 2) | (shuffleganon << 3) | (goal << 4) | (shuffle << 7) | (difficulty << 11) | (algorithm << 13) | (mode << 16)
class CollectionState(object):