@quenty/actionmanager 13.19.3 → 13.19.4
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 +8 -0
- package/package.json +2 -2
- package/src/Client/ActionManager.lua +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.19.4](https://github.com/Quenty/NevermoreEngine/compare/@quenty/actionmanager@13.19.3...@quenty/actionmanager@13.19.4) (2025-04-16)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @quenty/actionmanager
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [13.19.3](https://github.com/Quenty/NevermoreEngine/compare/@quenty/actionmanager@13.19.2...@quenty/actionmanager@13.19.3) (2025-04-10)
|
|
7
15
|
|
|
8
16
|
**Note:** Version bump only for package @quenty/actionmanager
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/actionmanager",
|
|
3
|
-
"version": "13.19.
|
|
3
|
+
"version": "13.19.4",
|
|
4
4
|
"description": "Holds single toggleable actions (like a tool system)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"publishConfig": {
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
|
-
"gitHead": "
|
|
37
|
+
"gitHead": "1419b0e14afe1ec682c03ae48170b002c723af4e"
|
|
38
38
|
}
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
Holds single toggleable actions (like a tool system).
|
|
3
3
|
|
|
4
4
|
:::info
|
|
5
|
-
This is legacy code and probably
|
|
5
|
+
This is legacy code and probably should not be used in new games.
|
|
6
6
|
:::
|
|
7
7
|
|
|
8
8
|
@class ActionManager
|
|
@@ -114,4 +114,4 @@ function ActionManager:Destroy()
|
|
|
114
114
|
self._maid:Destroy()
|
|
115
115
|
end
|
|
116
116
|
|
|
117
|
-
return ActionManager
|
|
117
|
+
return ActionManager
|