From 511bb212eda44f3bef102fe5160ced51dbd40376 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Sat, 26 Oct 2024 05:38:00 +0200 Subject: [PATCH] Core: The Item Links fix to end them all This puts the bandaid that was holding Item Links together for years back on. It's a bad solution But it's what we had previously, and the change away from this is what broke them So in the interest of 0.5.1 releasing this century, maybe we should just go with this. --- worlds/AutoWorld.py | 1 + 1 file changed, 1 insertion(+) diff --git a/worlds/AutoWorld.py b/worlds/AutoWorld.py index f7dae2b927..3755d35cfb 100644 --- a/worlds/AutoWorld.py +++ b/worlds/AutoWorld.py @@ -480,6 +480,7 @@ class World(metaclass=AutoWorldRegister): group = cls(multiworld, new_player_id) group.options = cls.options_dataclass(**{option_key: option.from_any(option.default) for option_key, option in cls.options_dataclass.type_hints.items()}) + group.options.accessibility = ItemsAccessibility(ItemsAccessibility.option_items) return group