Skip to content

Commit edd3bbb

Browse files
TRPG0qwint
authored andcommitted
Hylics 2: Fix logic for medallions in vault (ArchipelagoMW#3148)
1 parent 1e343ad commit edd3bbb

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

worlds/hylics2/Rules.py

+5
Original file line numberDiff line numberDiff line change
@@ -413,26 +413,31 @@ def set_rules(hylics2world):
413413
lambda state: (
414414
enter_foglast(state, player)
415415
and bridge_key(state, player)
416+
and air_dash(state, player)
416417
))
417418
add_rule(world.get_location("New Muldul: Vault Rear Right Medallion", player),
418419
lambda state: (
419420
enter_foglast(state, player)
420421
and bridge_key(state, player)
422+
and air_dash(state, player)
421423
))
422424
add_rule(world.get_location("New Muldul: Vault Center Medallion", player),
423425
lambda state: (
424426
enter_foglast(state, player)
425427
and bridge_key(state, player)
428+
and air_dash(state, player)
426429
))
427430
add_rule(world.get_location("New Muldul: Vault Front Left Medallion", player),
428431
lambda state: (
429432
enter_foglast(state, player)
430433
and bridge_key(state, player)
434+
and air_dash(state, player)
431435
))
432436
add_rule(world.get_location("New Muldul: Vault Front Right Medallion", player),
433437
lambda state: (
434438
enter_foglast(state, player)
435439
and bridge_key(state, player)
440+
and air_dash(state, player)
436441
))
437442
add_rule(world.get_location("Viewax's Edifice: Fort Wall Medallion", player),
438443
lambda state: paddle(state, player))

0 commit comments

Comments
 (0)