Skip to content

Commit

Permalink
Merge pull request #146 from xNul/main
Browse files Browse the repository at this point in the history
Fix no custom properties when set to "all" bug
  • Loading branch information
cheahjs committed Feb 10, 2024
2 parents 349e8e7 + 9f18b89 commit 99bad52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion palworld_save_tools/commands/convert.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def convert_sav_to_json(
raw_gvas, _ = decompress_sav_to_gvas(data)
print(f"Loading GVAS file")
custom_properties = {}
if len(custom_properties) > 0 and custom_properties_keys[0] == "all":
if len(custom_properties_keys) > 0 and custom_properties_keys[0] == "all":
custom_properties = PALWORLD_CUSTOM_PROPERTIES
else:
for prop in PALWORLD_CUSTOM_PROPERTIES:
Expand Down

0 comments on commit 99bad52

Please sign in to comment.