From b0b7e9b2e5fd0528cf89580685af4f517172c011 Mon Sep 17 00:00:00 2001 From: Jamie Holding Date: Wed, 24 Jun 2026 20:33:41 +0000 Subject: [PATCH] fix(dlp): drop "Entry to World of Frozen" from POI list P2EA02 is a land-entry Premier Access pass, not a ride. It was retained in VISIBILITY_EXCEPTIONS during the legacy collector migration for parity; now that we're past that window, move it to IGNORE_ENTITIES so it's dropped from entities, live data, and schedules in one pass. Co-Authored-By: Claude Opus 4.7 --- src/parks/dlp/disneylandparis.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parks/dlp/disneylandparis.ts b/src/parks/dlp/disneylandparis.ts index ccbbce318..dbf0e76e1 100644 --- a/src/parks/dlp/disneylandparis.ts +++ b/src/parks/dlp/disneylandparis.ts @@ -27,13 +27,13 @@ const IGNORE_ENTITIES = new Set([ 'P2AC00-REMOVED', 'P2AC00', 'armageddon', + 'P2EA02', // Entry to World of Frozen (land-entry pass, not a ride) ]); /** Entities that bypass visibility/hide rules */ const VISIBILITY_EXCEPTIONS = new Set([ 'P2EA00', // Frozen Ever After 'P2DA00', // Tangled Spin - 'P2EA02', // Entry to World of Frozen ]); /** Hide rules that exclude entities from the POI list */