@quenty/idleservice 8.4.0 → 8.4.1-canary.438.5c31ea4.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,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
+ ## [8.4.1-canary.438.5c31ea4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@8.4.0...@quenty/idleservice@8.4.1-canary.438.5c31ea4.0) (2024-01-08)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add HumanoidTrackerService API methods that allow for use on server too ([e674fda](https://github.com/Quenty/NevermoreEngine/commit/e674fda95746f87e052da7087aea298084dfb381))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.4.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@8.3.0...@quenty/idleservice@8.4.0) (2023-12-28)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/idleservice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/idleservice",
3
- "version": "8.4.0",
3
+ "version": "8.4.1-canary.438.5c31ea4.0",
4
4
  "description": "Helps track whether or not a player is idle and if so, then can show UI or other cute things.",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -27,19 +27,19 @@
27
27
  "Quenty"
28
28
  ],
29
29
  "dependencies": {
30
- "@quenty/baseobject": "^7.1.0",
31
- "@quenty/humanoidtracker": "^8.3.0",
32
- "@quenty/loader": "^7.1.0",
33
- "@quenty/maid": "^2.6.0",
34
- "@quenty/ragdoll": "^10.4.0",
35
- "@quenty/rx": "^8.3.0",
36
- "@quenty/servicebag": "^7.1.0",
37
- "@quenty/statestack": "^9.3.0",
38
- "@quenty/valuebaseutils": "^8.3.0",
39
- "@quenty/valueobject": "^8.3.0"
30
+ "@quenty/baseobject": "7.1.1-canary.438.5c31ea4.0",
31
+ "@quenty/humanoidtracker": "8.3.1-canary.438.5c31ea4.0",
32
+ "@quenty/loader": "7.1.1-canary.438.5c31ea4.0",
33
+ "@quenty/maid": "2.6.0",
34
+ "@quenty/ragdoll": "10.4.1-canary.438.5c31ea4.0",
35
+ "@quenty/rx": "8.3.1-canary.438.5c31ea4.0",
36
+ "@quenty/servicebag": "7.1.1-canary.438.5c31ea4.0",
37
+ "@quenty/statestack": "9.3.1-canary.438.5c31ea4.0",
38
+ "@quenty/valuebaseutils": "8.3.1-canary.438.5c31ea4.0",
39
+ "@quenty/valueobject": "8.3.1-canary.438.5c31ea4.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "7440d02391695fa3e9c22f8c8285451ccfa32ad5"
44
+ "gitHead": "5c31ea4ac189fb841386398a54bdea773e497420"
45
45
  }
@@ -12,6 +12,7 @@ function IdleService:Init(serviceBag)
12
12
  self._serviceBag = assert(serviceBag, "No serviceBag")
13
13
 
14
14
  self._serviceBag:GetService(require("RagdollService"))
15
+ self._serviceBag:GetService(require("HumanoidTrackerService"))
15
16
  end
16
17
 
17
18
  return IdleService