@quenty/humanoiddescriptionutils 10.4.0 → 10.4.1-canary.497.25c8512.0
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.
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [10.4.1-canary.497.25c8512.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoiddescriptionutils@10.4.0...@quenty/humanoiddescriptionutils@10.4.1-canary.497.25c8512.0) (2024-09-20)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/humanoiddescriptionutils
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
# [10.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoiddescriptionutils@10.3.0...@quenty/humanoiddescriptionutils@10.4.0) (2024-09-12)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/humanoiddescriptionutils
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/humanoiddescriptionutils",
|
|
3
|
-
"version": "10.4.0",
|
|
3
|
+
"version": "10.4.1-canary.497.25c8512.0",
|
|
4
4
|
"description": "Handles actions involving HumanoidDescription objects, including loading character appearance.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -25,13 +25,13 @@
|
|
|
25
25
|
"Quenty"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@quenty/insertserviceutils": "
|
|
29
|
-
"@quenty/loader": "
|
|
30
|
-
"@quenty/playersservicepromises": "
|
|
31
|
-
"@quenty/promise": "
|
|
28
|
+
"@quenty/insertserviceutils": "10.4.1-canary.497.25c8512.0",
|
|
29
|
+
"@quenty/loader": "10.4.1-canary.497.25c8512.0",
|
|
30
|
+
"@quenty/playersservicepromises": "10.4.1-canary.497.25c8512.0",
|
|
31
|
+
"@quenty/promise": "10.4.1-canary.497.25c8512.0"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "25c85124769eb0c92ad4d4c51bc950d9c319c994"
|
|
37
37
|
}
|
|
@@ -125,8 +125,7 @@ function HumanoidDescriptionUtils.getAssetIdsFromString(assetString)
|
|
|
125
125
|
if num then
|
|
126
126
|
table.insert(assetIds, num)
|
|
127
127
|
elseif assetIdStr ~= "" then
|
|
128
|
-
warn(("[HumanoidDescriptionUtils/getAssetIdsFromString] - Failed to convert %q to assetId")
|
|
129
|
-
:format(assetIdStr))
|
|
128
|
+
warn(string.format("[HumanoidDescriptionUtils/getAssetIdsFromString] - Failed to convert %q to assetId", assetIdStr))
|
|
130
129
|
end
|
|
131
130
|
end
|
|
132
131
|
|