Skip to content

Commit

Permalink
Fix with new Panel Keys
Browse files Browse the repository at this point in the history
  • Loading branch information
NewSoupVi authored Dec 11, 2024
1 parent 4de0135 commit ca8ab86
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion worlds/witness/test/test_early_good_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ def test_early_good_item(self) -> None:

self.assertTrue(back_left.item is not None, "Somehow, no item got placed on Tutorial Back Left.")

doors_and_panel_keys = self.world.item_name_groups["Doors"] | self.world.item_name_groups["Panel Keys"]
self.assertTrue(
cast_not_none(back_left.item).name in self.world.item_name_groups["Doors"],
cast_not_none(back_left.item).name in doors_and_panel_keys,
"Early Good Item was on, yet no Door item ended up on Tutorial Back Left.",
)

Expand Down

0 comments on commit ca8ab86

Please sign in to comment.