@quenty/deathreport 10.24.0 → 10.24.1-canary.675e877.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,18 @@
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
+ ## [10.24.1-canary.675e877.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.24.0...@quenty/deathreport@10.24.1-canary.675e877.0) (2025-08-07)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix cyclical dependencies ([b9fbb05](https://github.com/Quenty/NevermoreEngine/commit/b9fbb051253e878b47f292f0462f1e8579115d1c))
12
+ * Fix death report stuff ([4366b56](https://github.com/Quenty/NevermoreEngine/commit/4366b567867a14184b24d8cd7e8164f279eefb54))
13
+
14
+
15
+
16
+
17
+
6
18
  # [10.24.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/deathreport@10.23.0...@quenty/deathreport@10.24.0) (2025-07-11)
7
19
 
8
20
  **Note:** Version bump only for package @quenty/deathreport
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/deathreport",
3
- "version": "10.24.0",
3
+ "version": "10.24.1-canary.675e877.0",
4
4
  "description": "Death report service which will track the deaths of players",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,19 +29,19 @@
29
29
  "access": "public"
30
30
  },
31
31
  "dependencies": {
32
- "@quenty/baseobject": "^10.9.0",
33
- "@quenty/binder": "^14.21.0",
34
- "@quenty/characterutils": "^12.20.0",
35
- "@quenty/humanoidkillerutils": "^2.3.3",
36
- "@quenty/loader": "^10.9.0",
37
- "@quenty/maid": "^3.5.0",
38
- "@quenty/playerhumanoidbinder": "^14.21.0",
39
- "@quenty/remoting": "^12.19.0",
40
- "@quenty/rx": "^13.18.0",
41
- "@quenty/rxbinderutils": "^14.21.0",
42
- "@quenty/servicebag": "^11.13.0",
43
- "@quenty/signal": "^7.11.0",
44
- "@quenty/table": "^3.8.0"
32
+ "@quenty/baseobject": "10.9.0",
33
+ "@quenty/binder": "14.21.0",
34
+ "@quenty/characterutils": "12.20.0",
35
+ "@quenty/humanoidkillerutils": "2.3.3",
36
+ "@quenty/loader": "10.9.0",
37
+ "@quenty/maid": "3.5.0",
38
+ "@quenty/playerhumanoidbinder": "14.21.0",
39
+ "@quenty/remoting": "12.19.0",
40
+ "@quenty/rx": "13.18.0",
41
+ "@quenty/rxbinderutils": "14.21.0",
42
+ "@quenty/servicebag": "11.13.0",
43
+ "@quenty/signal": "7.11.0",
44
+ "@quenty/table": "3.8.0"
45
45
  },
46
- "gitHead": "b2387bbbc347e784216a6e9e2d1abefd23c1d375"
46
+ "gitHead": "675e87759fbcf0f346c264580e679725819353e3"
47
47
  }
@@ -6,12 +6,8 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local Binder = require("Binder")
8
8
  local BinderProvider = require("BinderProvider")
9
- local PlayerHumanoidBinder = require("PlayerHumanoidBinder")
10
9
 
11
10
  return BinderProvider.new(script.Name, function(self, serviceBag)
12
- -- Tracking
13
- self:Add(PlayerHumanoidBinder.new("DeathTrackedHumanoid", require("DeathTrackedHumanoid"), serviceBag))
14
-
15
11
  -- Stats
16
12
  self:Add(Binder.new("TeamKillTracker", require("TeamKillTracker"), serviceBag))
17
13
  self:Add(Binder.new("PlayerKillTracker", require("PlayerKillTracker"), serviceBag))
@@ -48,6 +48,9 @@ function DeathReportService.Init(self: DeathReportService, serviceBag: ServiceBa
48
48
  -- Internal
49
49
  self._serviceBag:GetService((require :: any)("DeathReportBindersServer"))
50
50
 
51
+ -- Binders
52
+ self._serviceBag:GetService((require :: any)("DeathTrackedHumanoid"))
53
+
51
54
  -- Export
52
55
  self.NewDeathReport = self._maid:Add(Signal.new()) :: any
53
56
 
@@ -6,6 +6,7 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local BaseObject = require("BaseObject")
8
8
  local DeathReportService = require("DeathReportService")
9
+ local PlayerHumanoidBinder = require("PlayerHumanoidBinder")
9
10
 
10
11
  local DeathTrackedHumanoid = setmetatable({}, BaseObject)
11
12
  DeathTrackedHumanoid.ClassName = "DeathTrackedHumanoid"
@@ -36,4 +37,4 @@ function DeathTrackedHumanoid:_handleDeath()
36
37
  end
37
38
  end
38
39
 
39
- return DeathTrackedHumanoid
40
+ return PlayerHumanoidBinder.new("DeathTrackedHumanoid", DeathTrackedHumanoid)