@quenty/idleservice 13.24.0-canary.559.b31717d.0 → 13.24.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,7 +3,7 @@
|
|
|
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
|
-
# [13.24.0
|
|
6
|
+
# [13.24.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/idleservice@13.23.3...@quenty/idleservice@13.24.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/idleservice",
|
|
3
|
-
"version": "13.24.0
|
|
3
|
+
"version": "13.24.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": "10.
|
|
31
|
-
"@quenty/humanoidtracker": "13.18.0
|
|
32
|
-
"@quenty/loader": "10.
|
|
33
|
-
"@quenty/maid": "3.
|
|
34
|
-
"@quenty/ragdoll": "15.24.0
|
|
35
|
-
"@quenty/rx": "13.18.0
|
|
36
|
-
"@quenty/servicebag": "11.12.0
|
|
37
|
-
"@quenty/statestack": "14.19.0
|
|
38
|
-
"@quenty/valuebaseutils": "13.18.0
|
|
39
|
-
"@quenty/valueobject": "13.18.0
|
|
30
|
+
"@quenty/baseobject": "^10.9.0",
|
|
31
|
+
"@quenty/humanoidtracker": "^13.18.0",
|
|
32
|
+
"@quenty/loader": "^10.9.0",
|
|
33
|
+
"@quenty/maid": "^3.5.0",
|
|
34
|
+
"@quenty/ragdoll": "^15.24.0",
|
|
35
|
+
"@quenty/rx": "^13.18.0",
|
|
36
|
+
"@quenty/servicebag": "^11.12.0",
|
|
37
|
+
"@quenty/statestack": "^14.19.0",
|
|
38
|
+
"@quenty/valuebaseutils": "^13.18.0",
|
|
39
|
+
"@quenty/valueobject": "^13.18.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
|
|
45
45
|
}
|
|
@@ -85,22 +85,22 @@ function IdleServiceClient:ObserveHumanoidMoveFromCurrentPosition(minimumTimeVis
|
|
|
85
85
|
assert(type(minimumTimeVisible) == "number", "Bad minimumTimeVisible")
|
|
86
86
|
|
|
87
87
|
return Rx.of(true):Pipe({
|
|
88
|
-
Rx.delay(minimumTimeVisible)
|
|
88
|
+
Rx.delay(minimumTimeVisible),
|
|
89
89
|
Rx.flatMap(function()
|
|
90
90
|
return self._lastPosition:Observe()
|
|
91
|
-
end)
|
|
91
|
+
end),
|
|
92
92
|
Rx.where(function(value)
|
|
93
93
|
return value ~= nil
|
|
94
|
-
end)
|
|
95
|
-
Rx.first()
|
|
94
|
+
end),
|
|
95
|
+
Rx.first(),
|
|
96
96
|
Rx.flatMap(function(initialPosition)
|
|
97
97
|
return self._lastPosition:Observe():Pipe({
|
|
98
98
|
Rx.where(function(position)
|
|
99
99
|
return position == nil or (initialPosition - position).magnitude >= MOVE_DISTANCE_REQUIRED
|
|
100
|
-
end)
|
|
100
|
+
end),
|
|
101
101
|
})
|
|
102
|
-
end)
|
|
103
|
-
Rx.first()
|
|
102
|
+
end),
|
|
103
|
+
Rx.first(),
|
|
104
104
|
})
|
|
105
105
|
end
|
|
106
106
|
|
|
@@ -229,4 +229,4 @@ function IdleServiceClient:Destroy()
|
|
|
229
229
|
self._maid:DoCleaning()
|
|
230
230
|
end
|
|
231
231
|
|
|
232
|
-
return IdleServiceClient
|
|
232
|
+
return IdleServiceClient
|