@quenty/humanoiddescriptionutils 10.10.1 → 10.10.2

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,17 @@
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.10.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoiddescriptionutils@10.10.1...@quenty/humanoiddescriptionutils@10.10.2) (2025-04-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add types to packages ([2374fb2](https://github.com/Quenty/NevermoreEngine/commit/2374fb2b043cfbe0e9b507b3316eec46a4e353a0))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [10.10.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoiddescriptionutils@10.10.0...@quenty/humanoiddescriptionutils@10.10.1) (2025-03-21)
7
18
 
8
19
  **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.10.1",
3
+ "version": "10.10.2",
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": "^10.10.1",
29
- "@quenty/loader": "^10.8.0",
30
- "@quenty/playersservicepromises": "^10.10.1",
31
- "@quenty/promise": "^10.10.1"
28
+ "@quenty/insertserviceutils": "^10.10.2",
29
+ "@quenty/loader": "^10.8.1",
30
+ "@quenty/playersservicepromises": "^10.10.2",
31
+ "@quenty/promise": "^10.10.2"
32
32
  },
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "6b7c3e15e60cdb185986207b574e2b5591261e7a"
36
+ "gitHead": "78c3ac0ab08dd18085b6e6e6e4f745e76ed99f68"
37
37
  }
@@ -120,12 +120,17 @@ function HumanoidDescriptionUtils.getAssetIdsFromString(assetString)
120
120
  end
121
121
 
122
122
  local assetIds = {}
123
- for _, assetIdStr in pairs(string.split(assetString, ",")) do
123
+ for _, assetIdStr in string.split(assetString, ",") do
124
124
  local num = tonumber(assetIdStr)
125
125
  if num then
126
126
  table.insert(assetIds, num)
127
127
  elseif assetIdStr ~= "" then
128
- warn(string.format("[HumanoidDescriptionUtils/getAssetIdsFromString] - Failed to convert %q to assetId", assetIdStr))
128
+ warn(
129
+ string.format(
130
+ "[HumanoidDescriptionUtils/getAssetIdsFromString] - Failed to convert %q to assetId",
131
+ assetIdStr
132
+ )
133
+ )
129
134
  end
130
135
  end
131
136
 
@@ -139,7 +144,7 @@ end
139
144
  ]=]
140
145
  function HumanoidDescriptionUtils.getAssetPromisesFromString(assetString)
141
146
  local promises = {}
142
- for _, assetId in pairs(HumanoidDescriptionUtils.getAssetIdsFromString(assetString)) do
147
+ for _, assetId in HumanoidDescriptionUtils.getAssetIdsFromString(assetString) do
143
148
  table.insert(promises, InsertServiceUtils.promiseAsset(assetId))
144
149
  end
145
150
  return promises