Skip to content

Commit

Permalink
Closed doors logic (#68)
Browse files Browse the repository at this point in the history
Co-authored-by: wossnameGitHub <423368@student.fontys.nl>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Avasam <samuel.06@hotmail.com>
  • Loading branch information
4 people authored Jul 17, 2024
1 parent 622f9fc commit e1eed81
Show file tree
Hide file tree
Showing 4 changed files with 398 additions and 164 deletions.
9 changes: 8 additions & 1 deletion Dolphin scripts/Entrance Randomizer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
from lib.constants import * # noqa: F403
from lib.constants import __version__
from lib.entrance_rando import (
CLOSED_DOOR_EXITS,
SHOWN_DISABLED_TRANSITIONS,
highjack_transition_rando,
set_transitions_map,
Expand Down Expand Up @@ -50,7 +51,13 @@

# Dump spoiler logs and graph
dump_spoiler_logs(starting_area_name, transitions_map, seed_string)
create_graphml(transitions_map, SHOWN_DISABLED_TRANSITIONS, seed_string, starting_area)
create_graphml(
transitions_map,
SHOWN_DISABLED_TRANSITIONS,
CLOSED_DOOR_EXITS,
seed_string,
starting_area,
)


async def main_loop():
Expand Down
Loading

0 comments on commit e1eed81

Please sign in to comment.