Skip to content

Commit

Permalink
Remove more data_version values.
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar committed Nov 5, 2023
1 parent 3ddb150 commit 6293166
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion worlds/adventure/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ class AdventureWorld(World):
settings: ClassVar[AdventureSettings]
item_name_to_id: ClassVar[Dict[str, int]] = {name: data.id for name, data in item_table.items()}
location_name_to_id: ClassVar[Dict[str, int]] = {name: data.location_id for name, data in location_table.items()}
data_version: ClassVar[int] = 1
required_client_version: Tuple[int, int, int] = (0, 3, 9)

def __init__(self, world: MultiWorld, player: int):
Expand Down
1 change: 0 additions & 1 deletion worlds/lufia2ac/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@ class L2ACWorld(World):
"Iris treasures": {name for name, data in l2ac_item_table.items() if data.type is ItemType.IRIS_TREASURE},
"Party members": {name for name, data in l2ac_item_table.items() if data.type is ItemType.PARTY_MEMBER},
}
data_version: ClassVar[int] = 2
required_client_version: Tuple[int, int, int] = (0, 4, 2)

# L2ACWorld specific properties
Expand Down

0 comments on commit 6293166

Please sign in to comment.