TUNIC: Add alias for Ladders in Overworld Town #3862

This commit is contained in:
Scipio Wright
2024-08-31 17:37:18 -04:00
committed by GitHub
parent 456b4adaa1
commit 34a3b5f058

View File

@@ -235,9 +235,10 @@ extra_groups: Dict[str, Set[str]] = {
"Questagons": {"Red Questagon", "Green Questagon", "Blue Questagon", "Gold Questagon"}, "Questagons": {"Red Questagon", "Green Questagon", "Blue Questagon", "Gold Questagon"},
"Ladder to Atoll": {"Ladder to Ruined Atoll"}, # fuzzy matching made it hint Ladders in Well, now it won't "Ladder to Atoll": {"Ladder to Ruined Atoll"}, # fuzzy matching made it hint Ladders in Well, now it won't
"Ladders to Bell": {"Ladders to West Bell"}, "Ladders to Bell": {"Ladders to West Bell"},
"Ladders to Well": {"Ladders in Well"}, # fuzzy matching decided ladders in well was ladders to west bell "Ladders to Well": {"Ladders in Well"}, # fuzzy matching decided Ladders in Well was Ladders to West Bell
"Ladders in Atoll": {"Ladders in South Atoll"}, "Ladders in Atoll": {"Ladders in South Atoll"},
"Ladders in Ruined Atoll": {"Ladders in South Atoll"}, "Ladders in Ruined Atoll": {"Ladders in South Atoll"},
"Ladders in Town": {"Ladders in Overworld Town"}, # fuzzy matching decided this was Ladders in South Atoll
} }
item_name_groups.update(extra_groups) item_name_groups.update(extra_groups)