Skip to content

Commit

Permalink
Hack to try fix disappearing actors
Browse files Browse the repository at this point in the history
  • Loading branch information
ThanatosGit committed Sep 27, 2023
1 parent 1a1f217 commit 0d35833
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion open_samus_returns_rando/specific_patches/door_patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,8 @@ def _patch_beam_covers(editor: PatcherEditor):
entity_groups = [group for group_name, group in scenario.all_actor_groups()
if group_name in list(scenario.all_actor_group_names_for_actor(cover_name))]
for group in entity_groups:
group.names.append(new_actor_name)
idx = group.names.index(cover_name)
group.names.insert(idx, new_actor_name)


def _patch_charge_doors(editor: PatcherEditor):
Expand Down

0 comments on commit 0d35833

Please sign in to comment.