From 21013ec0d1e3953276f11bd8cce12f33d46a33ec Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sat, 1 Nov 2025 12:18:25 -0400 Subject: (Almost) all panels are locations or connections now --- apworld/client/player.gd | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'apworld/client') diff --git a/apworld/client/player.gd b/apworld/client/player.gd index 0e3fb23..35fd793 100644 --- a/apworld/client/player.gd +++ b/apworld/client/player.gd @@ -604,9 +604,12 @@ func _ready(): continue if ( - door.get_type() == gamedata.SCRIPT_proto.DoorType.ITEM_ONLY - or door.get_type() == gamedata.SCRIPT_proto.DoorType.GALLERY_PAINTING - or door.get_type() == gamedata.SCRIPT_proto.DoorType.CONTROL_CENTER_COLOR + not (door.has_legacy_location() and door.get_legacy_location()) + and ( + door.get_type() == gamedata.SCRIPT_proto.DoorType.ITEM_ONLY + or door.get_type() == gamedata.SCRIPT_proto.DoorType.GALLERY_PAINTING + or door.get_type() == gamedata.SCRIPT_proto.DoorType.CONTROL_CENTER_COLOR + ) ): continue -- cgit 1.4.1