LttP: fix that collect can bypass requirements for ganon ped goal (#1771)

LttP: more pep8
This commit is contained in:
Fabian Dill
2023-04-26 10:48:08 +02:00
committed by GitHub
parent bb56f7b400
commit 4c3eaf2996
15 changed files with 107 additions and 66 deletions

View File

@@ -3,7 +3,6 @@ import os
import random
import threading
import typing
from collections import OrderedDict
import Utils
from BaseClasses import Item, CollectionState, Tutorial, MultiWorld
@@ -122,7 +121,7 @@ class ALTTPWorld(World):
dungeons on your quest to rescue the descendents of the seven wise men and defeat the evil
Ganon!
"""
game: str = "A Link to the Past"
game = "A Link to the Past"
option_definitions = alttp_options
topology_present = True
item_name_groups = item_name_groups
@@ -202,7 +201,7 @@ class ALTTPWorld(World):
location_name_to_id = lookup_name_to_id
data_version = 8
required_client_version = (0, 3, 2)
required_client_version = (0, 4, 1)
web = ALTTPWeb()
pedestal_credit_texts: typing.Dict[int, str] = \