Fix keyshuffle
This commit is contained in:
@@ -113,7 +113,7 @@ class World(object):
|
|||||||
set_player_attr('fix_fake_world', logic[player] not in ['owglitches', 'nologic'] or shuffle[player] in ['crossed', 'insanity'])
|
set_player_attr('fix_fake_world', logic[player] not in ['owglitches', 'nologic'] or shuffle[player] in ['crossed', 'insanity'])
|
||||||
set_player_attr('mapshuffle', False)
|
set_player_attr('mapshuffle', False)
|
||||||
set_player_attr('compassshuffle', False)
|
set_player_attr('compassshuffle', False)
|
||||||
set_player_attr('keyshuffle', 'standard')
|
set_player_attr('keyshuffle', 'none')
|
||||||
set_player_attr('bigkeyshuffle', False)
|
set_player_attr('bigkeyshuffle', False)
|
||||||
set_player_attr('restrict_boss_items', 'none')
|
set_player_attr('restrict_boss_items', 'none')
|
||||||
set_player_attr('bombbag', False)
|
set_player_attr('bombbag', False)
|
||||||
|
|||||||
@@ -53,7 +53,7 @@
|
|||||||
"randomizer.dungeon.mapshuffle": "Maps",
|
"randomizer.dungeon.mapshuffle": "Maps",
|
||||||
"randomizer.dungeon.compassshuffle": "Compasses",
|
"randomizer.dungeon.compassshuffle": "Compasses",
|
||||||
"randomizer.dungeon.smallkeyshuffle": "Small Keys",
|
"randomizer.dungeon.smallkeyshuffle": "Small Keys",
|
||||||
"randomizer.dungeon.smallkeyshuffle.standard": "In Dungeon",
|
"randomizer.dungeon.smallkeyshuffle.none": "In Dungeon",
|
||||||
"randomizer.dungeon.smallkeyshuffle.wild": "Randomized",
|
"randomizer.dungeon.smallkeyshuffle.wild": "Randomized",
|
||||||
"randomizer.dungeon.smallkeyshuffle.universal": "Universal",
|
"randomizer.dungeon.smallkeyshuffle.universal": "Universal",
|
||||||
"randomizer.dungeon.bigkeyshuffle": "Big Keys",
|
"randomizer.dungeon.bigkeyshuffle": "Big Keys",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"keyshuffle": {
|
"keyshuffle": {
|
||||||
"type": "selectbox",
|
"type": "selectbox",
|
||||||
"options": [
|
"options": [
|
||||||
"standard",
|
"none",
|
||||||
"wild",
|
"wild",
|
||||||
"universal"
|
"universal"
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -251,7 +251,7 @@ def previously_reserved(location, world, player):
|
|||||||
if world.restrict_boss_items[player] == 'dungeon' and (not world.compassshuffle[player]
|
if world.restrict_boss_items[player] == 'dungeon' and (not world.compassshuffle[player]
|
||||||
or not world.mapshuffle[player]
|
or not world.mapshuffle[player]
|
||||||
or not world.bigkeyshuffle[player]
|
or not world.bigkeyshuffle[player]
|
||||||
or world.keyshuffle[player] == 'standard'):
|
or world.keyshuffle[player] == 'none'):
|
||||||
return True
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user