From d8f79b4a42dfe0d66f9e58ea1f37ee998b4888d7 Mon Sep 17 00:00:00 2001 From: zig-for Date: Fri, 14 Apr 2023 21:48:05 -0700 Subject: [PATCH] LADX: Fix useless item being marked as progression (#1700) --- worlds/ladx/Items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/ladx/Items.py b/worlds/ladx/Items.py index ff5db695..b8be03d6 100644 --- a/worlds/ladx/Items.py +++ b/worlds/ladx/Items.py @@ -202,7 +202,7 @@ links_awakening_items = [ ItemData(ItemName.RUPEES_200, "RUPEES_200", ItemClassification.progression_skip_balancing), ItemData(ItemName.RUPEES_500, "RUPEES_500", ItemClassification.progression_skip_balancing), ItemData(ItemName.SEASHELL, "SEASHELL", ItemClassification.progression_skip_balancing), - ItemData(ItemName.MESSAGE, "MESSAGE", ItemClassification.progression), + ItemData(ItemName.MESSAGE, "MESSAGE", ItemClassification.filler), ItemData(ItemName.GEL, "GEL", ItemClassification.trap), ItemData(ItemName.BOOMERANG, "BOOMERANG", ItemClassification.progression), ItemData(ItemName.HEART_PIECE, "HEART_PIECE", ItemClassification.filler),