From 438a12a147c3b7dc092c910e64a7502b671b22e6 Mon Sep 17 00:00:00 2001 From: massimilianodelliubaldini <8584296+massimilianodelliubaldini@users.noreply.github.com> Date: Sun, 6 Apr 2025 17:21:15 -0400 Subject: [PATCH] Missed unnecessary comments. --- worlds/jakanddaxter/Rules.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/worlds/jakanddaxter/Rules.py b/worlds/jakanddaxter/Rules.py index 76e5f65fc8..d312e9f051 100644 --- a/worlds/jakanddaxter/Rules.py +++ b/worlds/jakanddaxter/Rules.py @@ -46,7 +46,6 @@ def count_reachable_orbs_global(state: CollectionState, world: JakAndDaxterWorld) -> int: accessible_orbs = 0 - # Cast all regions upfront to access their unique attributes. for level_name in world.level_to_regions: for region in world.level_to_regions[level_name]: # Rely on short-circuiting to skip region.can_reach whenever possible. @@ -60,7 +59,6 @@ def count_reachable_orbs_level(state: CollectionState, level_name: str = "") -> int: accessible_orbs = 0 - # Cast all regions upfront to access their unique attributes. for region in world.level_to_regions[level_name]: # Rely on short-circuiting to skip region.can_reach whenever possible. if region.orb_count > 0 and region.can_reach(state):