@quenty/resetservice 11.19.4-canary.559.9f38947.0 → 11.20.0-canary.0a5db80.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 +2 -10
- package/package.json +10 -10
- package/src/Client/ResetServiceClient.lua +2 -2
- package/src/Server/ResetService.lua +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -3,20 +3,12 @@
|
|
|
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
|
-
|
|
6
|
+
# [11.20.0-canary.0a5db80.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.19.2...@quenty/resetservice@11.20.0-canary.0a5db80.0) (2025-05-10)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
### Features
|
|
10
10
|
|
|
11
|
-
* Add even more types ([
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
## [11.19.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/resetservice@11.19.2...@quenty/resetservice@11.19.3) (2025-04-10)
|
|
18
|
-
|
|
19
|
-
**Note:** Version bump only for package @quenty/resetservice
|
|
11
|
+
* Add even more types ([0a5db80](https://github.com/Quenty/NevermoreEngine/commit/0a5db8004684dc3e76fd5944599a22602d48cfa9))
|
|
20
12
|
|
|
21
13
|
|
|
22
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/resetservice",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.20.0-canary.0a5db80.0",
|
|
4
4
|
"description": "Handles reset requests since Roblox's reset system doesn't handle ragdolls correctly",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -26,17 +26,17 @@
|
|
|
26
26
|
"Quenty"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@quenty/coreguiutils": "10.
|
|
30
|
-
"@quenty/loader": "10.
|
|
31
|
-
"@quenty/maid": "3.
|
|
32
|
-
"@quenty/playerutils": "8.
|
|
33
|
-
"@quenty/promise": "10.
|
|
34
|
-
"@quenty/remoting": "12.
|
|
35
|
-
"@quenty/statestack": "14.
|
|
36
|
-
"@quenty/table": "3.
|
|
29
|
+
"@quenty/coreguiutils": "10.11.0-canary.0a5db80.0",
|
|
30
|
+
"@quenty/loader": "10.9.0-canary.0a5db80.0",
|
|
31
|
+
"@quenty/maid": "3.5.0-canary.0a5db80.0",
|
|
32
|
+
"@quenty/playerutils": "8.18.0-canary.0a5db80.0",
|
|
33
|
+
"@quenty/promise": "10.11.0-canary.0a5db80.0",
|
|
34
|
+
"@quenty/remoting": "12.19.0-canary.0a5db80.0",
|
|
35
|
+
"@quenty/statestack": "14.19.0-canary.0a5db80.0",
|
|
36
|
+
"@quenty/table": "3.8.0-canary.0a5db80.0"
|
|
37
37
|
},
|
|
38
38
|
"publishConfig": {
|
|
39
39
|
"access": "public"
|
|
40
40
|
},
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "0a5db8004684dc3e76fd5944599a22602d48cfa9"
|
|
42
42
|
}
|
|
@@ -15,8 +15,8 @@ local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
|
15
15
|
|
|
16
16
|
local CoreGuiUtils = require("CoreGuiUtils")
|
|
17
17
|
local Maid = require("Maid")
|
|
18
|
-
local Promise = require("Promise")
|
|
19
18
|
local Remoting = require("Remoting")
|
|
19
|
+
local Promise = require("Promise")
|
|
20
20
|
|
|
21
21
|
local RETRY_ATTEMPTS = 3
|
|
22
22
|
local INITIAL_WAIT_TIME = 1
|
|
@@ -77,4 +77,4 @@ function ResetServiceClient:Destroy()
|
|
|
77
77
|
(self :: any)._maid = nil
|
|
78
78
|
end
|
|
79
79
|
|
|
80
|
-
return ResetServiceClient
|
|
80
|
+
return ResetServiceClient
|
|
@@ -9,11 +9,11 @@ local require = require(script.Parent.loader).load(script)
|
|
|
9
9
|
|
|
10
10
|
local ReplicatedStorage = game:GetService("ReplicatedStorage")
|
|
11
11
|
|
|
12
|
+
local Remoting = require("Remoting")
|
|
12
13
|
local Maid = require("Maid")
|
|
14
|
+
local StateStack = require("StateStack")
|
|
13
15
|
local PlayerUtils = require("PlayerUtils")
|
|
14
16
|
local Promise = require("Promise")
|
|
15
|
-
local Remoting = require("Remoting")
|
|
16
|
-
local StateStack = require("StateStack")
|
|
17
17
|
|
|
18
18
|
local ResetService = {}
|
|
19
19
|
ResetService.ServiceName = "ResetService"
|
|
@@ -67,4 +67,4 @@ function ResetService:Destroy()
|
|
|
67
67
|
self._maid:DoCleaning()
|
|
68
68
|
end
|
|
69
69
|
|
|
70
|
-
return ResetService
|
|
70
|
+
return ResetService
|