allow remote_items to be set via AutoWorld

This commit is contained in:
Fabian Dill
2021-07-13 19:14:57 +02:00
parent bc83dfa9e2
commit 62a6cdc9f7
5 changed files with 13 additions and 5 deletions

View File

@@ -68,7 +68,6 @@ 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.remote_items = self.AttributeProxy(lambda player: self.game[player] != "A Link to the Past")
for player in range(1, players + 1):
def set_player_attr(attr, val):