Skip to content

Commit

Permalink
Update Rom.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbrq committed May 2, 2024
1 parent e2dd67d commit 7046a25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/mlss/Rom.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
Data.truechaosHat
]

pants = [
cpants = [
Data.vanilla,
Data.redPants,
Data.greenPants,
Expand Down Expand Up @@ -361,7 +361,7 @@ def swap_colors(world: "MLSSWorld", patch: MLSSProcedurePatch, color: int, bro:
chaos = True
if pants_option and color == 11:
chaos = True
for c in [c for c in (pants[color] if pants_option else colors[color])
for c in [c for c in (cpants[color] if pants_option else colors[color])
if (c[3] == bro if not chaos else c[1] == bro)]:
if chaos:
patch.write_token(APTokenTypes.WRITE, c[0],
Expand Down

0 comments on commit 7046a25

Please sign in to comment.