@quenty/actionmanager 13.11.0 → 13.11.1

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
+ ## [13.11.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/actionmanager@13.11.0...@quenty/actionmanager@13.11.1) (2024-11-04)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Add destroy method ([164dec2](https://github.com/Quenty/NevermoreEngine/commit/164dec29395e0d93e8e9d7223e828c281ab64730))
12
+
13
+
14
+
15
+
16
+
6
17
  # [13.11.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/actionmanager@13.10.0...@quenty/actionmanager@13.11.0) (2024-11-03)
7
18
 
8
19
  **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.11.0",
3
+ "version": "13.11.1",
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": "a7e6d8dffd16e9b516e352050571009f57fe6c67"
37
+ "gitHead": "b10790e93b6c4bca4a0271c3d18e125bbff29736"
38
38
  }
@@ -112,4 +112,8 @@ function ActionManager:AddAction(action)
112
112
  return self
113
113
  end
114
114
 
115
+ function ActionManager:Destroy()
116
+ self._maid:Destroy()
117
+ end
118
+
115
119
  return ActionManager