Skip to content

Commit

Permalink
Fix duplicate region connection and remove victory event from an item…
Browse files Browse the repository at this point in the history
… group
  • Loading branch information
Ehseezed committed Apr 25, 2024
1 parent 53c1af6 commit c310407
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion worlds/am2r/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def create_all_items(multiworld: MultiWorld, player: int) -> None:
"OHKO Trap": ItemData(108678026, "Trap", ItemClassification.trap, 25),
"Touhou Trap": ItemData(108678027, "Trap", ItemClassification.trap, 26),
"Metroid": ItemData(108678025, "MacGuffin", ItemClassification.progression_skip_balancing, 19),
"The Galaxy is at Peace": ItemData(None, "Victory", ItemClassification.progression)
"The Galaxy is at Peace": ItemData(None, "", ItemClassification.progression)

}
filler_weights: Dict[str, int] = {
Expand Down
2 changes: 1 addition & 1 deletion worlds/am2r/regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def create_regions_and_locations(world: MultiWorld, player: int):
connect(world, player, "GFS Thoth", "Main Caves"),

connect(world, player, "GFS Thoth", "Genesis")
connect(world, player, "GFS Thoth", "Genesis")
connect(world, player, "Genesis", "GFS Thoth")

connect(world, player, "Guardian", "Golden Temple"),
connect(world, player, "Golden Temple", "Guardian"),
Expand Down

0 comments on commit c310407

Please sign in to comment.