@quenty/scoredactionservice 16.15.1 → 16.16.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
|
+
# [16.16.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/scoredactionservice@16.15.1...@quenty/scoredactionservice@16.16.0) (2024-11-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* Don't check if we're cleaned up ([49aa695](https://github.com/Quenty/NevermoreEngine/commit/49aa695fba74b91225109eb2dbe0f14407facbdd))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
6
17
|
## [16.15.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/scoredactionservice@16.15.0...@quenty/scoredactionservice@16.15.1) (2024-11-04)
|
|
7
18
|
|
|
8
19
|
**Note:** Version bump only for package @quenty/scoredactionservice
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/scoredactionservice",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.16.0",
|
|
4
4
|
"description": "Scores actions and picks the highest rated one every frame",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -27,19 +27,19 @@
|
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@quenty/baseobject": "^10.7.1",
|
|
30
|
-
"@quenty/brio": "^14.
|
|
31
|
-
"@quenty/inputkeymaputils": "^14.
|
|
32
|
-
"@quenty/inputmode": "^13.
|
|
30
|
+
"@quenty/brio": "^14.12.0",
|
|
31
|
+
"@quenty/inputkeymaputils": "^14.15.0",
|
|
32
|
+
"@quenty/inputmode": "^13.13.0",
|
|
33
33
|
"@quenty/loader": "^10.7.1",
|
|
34
34
|
"@quenty/maid": "^3.4.0",
|
|
35
|
-
"@quenty/rx": "^13.
|
|
36
|
-
"@quenty/signal": "^7.
|
|
37
|
-
"@quenty/statestack": "^14.
|
|
35
|
+
"@quenty/rx": "^13.12.0",
|
|
36
|
+
"@quenty/signal": "^7.9.0",
|
|
37
|
+
"@quenty/statestack": "^14.13.0",
|
|
38
38
|
"@quenty/table": "^3.6.0",
|
|
39
|
-
"@quenty/valueobject": "^13.
|
|
39
|
+
"@quenty/valueobject": "^13.12.0"
|
|
40
40
|
},
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "00e6f71716216dd6ecbc8505ad898a1ab7f72756"
|
|
45
45
|
}
|
|
@@ -88,11 +88,13 @@ function InputListScoreHelper:_unregisterAction(inputType)
|
|
|
88
88
|
|
|
89
89
|
self._currentTypes[inputType] = nil
|
|
90
90
|
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
pickerForType
|
|
94
|
-
|
|
95
|
-
|
|
91
|
+
if self._provider.Destroy then
|
|
92
|
+
local pickerForType = self._provider:FindPicker(inputType)
|
|
93
|
+
if pickerForType then
|
|
94
|
+
pickerForType:RemoveAction(self._scoredAction)
|
|
95
|
+
else
|
|
96
|
+
warn("No pickerForType was registered. This should not occur.")
|
|
97
|
+
end
|
|
96
98
|
end
|
|
97
99
|
end
|
|
98
100
|
|