@quenty/humanoidutils 2.4.0 → 2.4.1

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
+ ## [2.4.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidutils@2.4.0...@quenty/humanoidutils@2.4.1) (2025-12-28)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Typecheck some more things ([41eaaa6](https://github.com/Quenty/NevermoreEngine/commit/41eaaa6d053c469f7548810da72d05dfbf997b26))
12
+
13
+
14
+
15
+
16
+
6
17
  # [2.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/humanoidutils@2.3.0...@quenty/humanoidutils@2.4.0) (2025-10-08)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/humanoidutils",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "description": "General humanoid utility code.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -32,5 +32,5 @@
32
32
  "@quenty/maid": "^3.5.0",
33
33
  "@quenty/rx": "^13.20.0"
34
34
  },
35
- "gitHead": "d396d6f77d25ba25f1f45bbc252216131f88eeed"
35
+ "gitHead": "821c9336020dfbcf5cd2f67f2dfe61624233ee06"
36
36
  }
@@ -1,3 +1,4 @@
1
+ --!strict
1
2
  --[=[
2
3
  @class RxHumanoidUtils
3
4
  ]=]
@@ -58,7 +59,7 @@ function RxHumanoidUtils.observeRunningSpeed(humanoid: Humanoid): Observable.Obs
58
59
  end
59
60
 
60
61
  return maid
61
- end)
62
+ end) :: any
62
63
  end
63
64
 
64
65
  --[=[
@@ -86,7 +87,7 @@ function RxHumanoidUtils.observeHumanoidStateType(humanoid: Humanoid): Observabl
86
87
  end
87
88
 
88
89
  return maid
89
- end)
90
+ end) :: any
90
91
  end
91
92
 
92
93
  return RxHumanoidUtils