Skip to content

Commit

Permalink
Fix the unit test that was made around the old S2 percent.
Browse files Browse the repository at this point in the history
  • Loading branch information
LiquidCat64 committed Mar 13, 2024
1 parent 9ace1a4 commit aecd145
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion worlds/cv64/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class TotalSpecial2s(Range):
"""How many Speical2 jewels are in the pool in total when Dracula's Condition is Special2s."""
range_start = 1
range_end = 70
default = 10
default = 25
display_name = "Total Special2s"


Expand Down
2 changes: 1 addition & 1 deletion worlds/cv64/test/test_access.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def test_dracula_special_condition(self) -> None:
self.get_item_by_name("Clocktower Key3")] * 2)
self.assertTrue(self.can_reach_entrance("Clocktower Door 3"))
self.assertFalse(self.can_reach_entrance("Dracula's door"))
self.collect([self.get_item_by_name("Special2")] * 9)
self.collect([self.get_item_by_name("Special2")] * 19)
self.assertFalse(self.can_reach_entrance("Dracula's door"))
self.collect([self.get_item_by_name("Special2")] * 1)
self.assertTrue(self.can_reach_entrance("Dracula's door"))
Expand Down

0 comments on commit aecd145

Please sign in to comment.