Add race flag to APMC if AP is run with the race arg.

This commit is contained in:
Hussein Farran
2021-07-20 14:16:40 -04:00
committed by Fabian Dill
parent b53c5593a8
commit bfad85223b
3 changed files with 4 additions and 1 deletions

View File

@@ -68,6 +68,7 @@ class MultiWorld():
self.fix_palaceofdarkness_exit = self.AttributeProxy(lambda player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'])
self.fix_trock_exit = self.AttributeProxy(lambda player: self.shuffle[player] not in ['vanilla', 'simple', 'restricted', 'dungeonssimple'])
self.NOTCURSED = self.AttributeProxy(lambda player: not self.CURSED[player])
self.is_race = False
for player in range(1, players + 1):
def set_player_attr(attr, val):