From 3b197bba3a70343769cda92627b76253165554f7 Mon Sep 17 00:00:00 2001 From: massimilianodelliubaldini <8584296+massimilianodelliubaldini@users.noreply.github.com> Date: Mon, 15 Apr 2024 21:41:28 -0400 Subject: [PATCH] Jak 1: Add version info. --- worlds/jakanddaxter/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worlds/jakanddaxter/__init__.py b/worlds/jakanddaxter/__init__.py index 3b99456336..24581cb55f 100644 --- a/worlds/jakanddaxter/__init__.py +++ b/worlds/jakanddaxter/__init__.py @@ -10,6 +10,8 @@ from ..AutoWorld import World class JakAndDaxterWorld(World): game: str = "Jak and Daxter: The Precursor Legacy" + data_version = 1 + required_client_version = (0, 4, 5) # Stored as {ID: Name} pairs, these must now be swapped to {Name: ID} pairs. item_name_to_id = {item_table[k]: game_id + k for k in item_table}