arkparser 0.4.0__tar.gz → 0.4.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {arkparser-0.4.0 → arkparser-0.4.1}/PKG-INFO +1 -1
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/export.py +2 -2
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser.egg-info/PKG-INFO +1 -1
- {arkparser-0.4.0 → arkparser-0.4.1}/pyproject.toml +1 -1
- {arkparser-0.4.0 → arkparser-0.4.1}/LICENSE +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/README.md +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/__init__.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/__init__.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/binary_reader.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/exceptions.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/map_config.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/normalization.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/types.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/common/version_detection.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/data_models.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/files/__init__.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/files/base.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/files/cloud_inventory.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/files/profile.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/files/tribe.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/files/world_save.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/game_objects/__init__.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/game_objects/container.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/game_objects/game_object.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/game_objects/location.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/properties/__init__.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/properties/base.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/properties/byte_property.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/properties/compound.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/properties/primitives.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/properties/registry.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/__init__.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/base.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/colors.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/misc.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/property_list.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/registry.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser/structs/vectors.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser.egg-info/SOURCES.txt +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser.egg-info/dependency_links.txt +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser.egg-info/requires.txt +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/arkparser.egg-info/top_level.txt +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/setup.cfg +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_asa_header_position.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_binary_reader.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_binary_reader_layouts.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_cloud_export.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_cloud_inventory.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_cryopod_export.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_current_stats.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_data_models.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_export.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_game_objects.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_profile.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_tribe.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_v13_property_layouts.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_version_detection.py +0 -0
- {arkparser-0.4.0 → arkparser-0.4.1}/tests/test_world_save.py +0 -0
|
@@ -1723,7 +1723,7 @@ def _tribe_members_from_parser(
|
|
|
1723
1723
|
profile = profile_index.get(pid) if profile_index else None
|
|
1724
1724
|
out.append({
|
|
1725
1725
|
"ign": _str(m.get("name")),
|
|
1726
|
-
"lvl": profile.level if profile is not None else
|
|
1726
|
+
"lvl": int(profile.level) if profile is not None else 0,
|
|
1727
1727
|
"playerid": str(pid),
|
|
1728
1728
|
"playername": _str(m.get("name")),
|
|
1729
1729
|
"steamid": (profile.unique_id or "") if profile is not None else "",
|
|
@@ -1828,7 +1828,7 @@ def _tribe_from_object(
|
|
|
1828
1828
|
profile = profile_index.get(pid_int) if profile_index else None
|
|
1829
1829
|
members.append({
|
|
1830
1830
|
"ign": name,
|
|
1831
|
-
"lvl": profile.level if profile is not None else
|
|
1831
|
+
"lvl": int(profile.level) if profile is not None else 0,
|
|
1832
1832
|
"playerid": str(pid_int),
|
|
1833
1833
|
"playername": name,
|
|
1834
1834
|
"steamid": (profile.unique_id or "") if profile is not None else "",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|