Skip to content

Commit

Permalink
Update jsontool.py
Browse files Browse the repository at this point in the history
hacky fix for version check, needs to be a greater check not a explicit one or this is going to break every release
  • Loading branch information
Simarilius-uk authored Jan 15, 2025
1 parent 4ae5e32 commit 9705ef2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i_scene_cp77_gltf/jsontool.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def json_ver_validate(json_data):
return False
header = json_data['Header']
if "WolvenKitVersion" in header and "8.13" not in header["WolvenKitVersion"]:
if "8.15" not in header["WolvenKitVersion"]:
if "8.15" not in header["WolvenKitVersion"] and "8.16" not in header["WolvenKitVersion"]:
return False
if "MaterialJsonVersion" in header:
if "1." not in header["MaterialJsonVersion"]:
Expand Down

0 comments on commit 9705ef2

Please sign in to comment.