"AssertionError: True is not false : Unexpected assignment to GrinchWorld.options!"
This commit is contained in:
MarioSpore
2025-09-06 16:50:38 -04:00
parent 9da65fab09
commit b390974019

View File

@@ -16,7 +16,7 @@ from .Rules import access_rules_dict
class GrinchWorld(World): class GrinchWorld(World):
game: ClassVar[str] = "The Grinch" game: ClassVar[str] = "The Grinch"
options_dataclass = Options.GrinchOptions options_dataclass = Options.GrinchOptions
options = Options.GrinchOptions options: Options.GrinchOptions
topology_present = True #not an open world game, very linear topology_present = True #not an open world game, very linear
item_name_to_id: ClassVar[dict[str,int]] = grinch_items_to_id() item_name_to_id: ClassVar[dict[str,int]] = grinch_items_to_id()
location_name_to_id: ClassVar[dict[str,int]] = grinch_locations_to_id() location_name_to_id: ClassVar[dict[str,int]] = grinch_locations_to_id()