Skip to content

Commit 9705ef2

Browse files
Update jsontool.py
hacky fix for version check, needs to be a greater check not a explicit one or this is going to break every release
1 parent 4ae5e32 commit 9705ef2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

i_scene_cp77_gltf/jsontool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def json_ver_validate(json_data):
2121
return False
2222
header = json_data['Header']
2323
if "WolvenKitVersion" in header and "8.13" not in header["WolvenKitVersion"]:
24-
if "8.15" not in header["WolvenKitVersion"]:
24+
if "8.15" not in header["WolvenKitVersion"] and "8.16" not in header["WolvenKitVersion"]:
2525
return False
2626
if "MaterialJsonVersion" in header:
2727
if "1." not in header["MaterialJsonVersion"]:

0 commit comments

Comments
 (0)