From d8576e72eb609cb9d779fe59f4243e3dd8afb9aa Mon Sep 17 00:00:00 2001 From: CodeGorilla Date: Fri, 4 Apr 2025 03:48:47 -0500 Subject: [PATCH] =?UTF-8?q?Pokemon=20Red/Blue:=20Set=20allow=5Fpartial=5Fe?= =?UTF-8?q?ntrances=20to=20true=20when=20building=20a=20state=20for=20ER?= =?UTF-8?q?=C2=A0#4802?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: CodeGorilla <3672561+Ars-Ignis@users.noreply.github.com> --- worlds/pokemon_rb/regions.py | 1 + 1 file changed, 1 insertion(+) diff --git a/worlds/pokemon_rb/regions.py b/worlds/pokemon_rb/regions.py index aef0b945..a7c0b6d5 100644 --- a/worlds/pokemon_rb/regions.py +++ b/worlds/pokemon_rb/regions.py @@ -2414,6 +2414,7 @@ def door_shuffle(world, multiworld, player, badges, badge_locs): loc.place_locked_item(badge) state = multiworld.state.copy() + state.allow_partial_entrances = True for item, data in item_table.items(): if (data.id or item in poke_data.pokemon_data) and data.classification == ItemClassification.progression \ and ("Badge" not in item or world.options.badgesanity):