@quenty/playerhumanoidbinder 8.5.0 → 8.5.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
+ ## [8.5.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@8.5.0...@quenty/playerhumanoidbinder@8.5.1) (2023-01-03)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix Humanoid and Character binders leaking warning message ([ff173f1](https://github.com/Quenty/NevermoreEngine/commit/ff173f1412b07680f7288b265b1940f2df516332))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.5.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/playerhumanoidbinder@8.4.1...@quenty/playerhumanoidbinder@8.5.0) (2023-01-01)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/playerhumanoidbinder
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/playerhumanoidbinder",
3
- "version": "8.5.0",
3
+ "version": "8.5.1",
4
4
  "description": "Binder that will automatically bind to each player's humanoid",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -33,5 +33,5 @@
33
33
  "publishConfig": {
34
34
  "access": "public"
35
35
  },
36
- "gitHead": "b2393f15774341318803f9bdd1377a4aa9d2fb0e"
36
+ "gitHead": "8f4aef032ba8bb0e3b3e576df73d921cc1ac545b"
37
37
  }
@@ -24,9 +24,6 @@ PlayerCharacterBinder.__index = PlayerCharacterBinder
24
24
  function PlayerCharacterBinder.new(tag, class, ...)
25
25
  local self = setmetatable(Binder.new(tag, class, ...), PlayerCharacterBinder)
26
26
 
27
- self._maid = Maid.new()
28
- self._maid:GiveTask(self._maid)
29
-
30
27
  self._shouldTag = Instance.new("BoolValue")
31
28
  self._shouldTag.Value = true
32
29
  self._maid:GiveTask(self._shouldTag)
@@ -25,9 +25,6 @@ PlayerHumanoidBinder.__index = PlayerHumanoidBinder
25
25
  function PlayerHumanoidBinder.new(tag, class, ...)
26
26
  local self = setmetatable(Binder.new(tag, class, ...), PlayerHumanoidBinder)
27
27
 
28
- self._maid = Maid.new()
29
- self._maid:GiveTask(self._maid)
30
-
31
28
  self._shouldTag = Instance.new("BoolValue")
32
29
  self._shouldTag.Value = true
33
30
  self._maid:GiveTask(self._shouldTag)