Skip to content

Commit

Permalink
Update worlds/marioland2/__init__.py
Browse files Browse the repository at this point in the history
Co-authored-by: Exempt-Medic <[email protected]>
  • Loading branch information
Alchav and Exempt-Medic authored Sep 10, 2024
1 parent 7d5a682 commit 94e58b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/marioland2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def generate_early(self):
if self.options.auto_scroll_chances == "vanilla":
self.auto_scroll_levels = [int(i in [19, 25, 30]) for i in range(32)]
else:
self.auto_scroll_levels = [int(self.random.randint(1, 100) < self.options.auto_scroll_chances)
self.auto_scroll_levels = [int(self.random.randint(1, 100) <= self.options.auto_scroll_chances)
for _ in range(32)]

self.auto_scroll_levels[level_name_to_id["Mario's Castle"]] = 0
Expand Down

0 comments on commit 94e58b2

Please sign in to comment.