@quenty/deathreport 10.41.2 → 10.43.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 +193 -706
- package/package.json +6 -6
- package/src/Client/DeathReportBindersClient.lua +1 -1
- package/src/Server/DeathReportBindersServer.lua +1 -1
- package/src/Shared/DeathReportServiceConstants.lua +1 -1
- package/src/Shared/Stats/PlayerKillTrackerUtils.lua +4 -4
- package/src/Shared/Stats/TeamKillTrackerUtils.lua +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/deathreport",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.43.0",
|
|
4
4
|
"description": "Death report service which will track the deaths of players",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@quenty/baseobject": "10.13.0",
|
|
36
|
-
"@quenty/binder": "14.
|
|
36
|
+
"@quenty/binder": "14.35.0",
|
|
37
37
|
"@quenty/characterutils": "12.31.2",
|
|
38
38
|
"@quenty/humanoidkillerutils": "2.3.5",
|
|
39
39
|
"@quenty/loader": "10.11.0",
|
|
40
40
|
"@quenty/maid": "3.9.0",
|
|
41
41
|
"@quenty/nevermore-test-runner": "1.4.0",
|
|
42
|
-
"@quenty/playerhumanoidbinder": "14.
|
|
42
|
+
"@quenty/playerhumanoidbinder": "14.36.0",
|
|
43
43
|
"@quenty/remoting": "12.31.2",
|
|
44
44
|
"@quenty/rx": "13.28.2",
|
|
45
|
-
"@quenty/rxbinderutils": "14.
|
|
46
|
-
"@quenty/servicebag": "11.
|
|
45
|
+
"@quenty/rxbinderutils": "14.35.0",
|
|
46
|
+
"@quenty/servicebag": "11.18.0",
|
|
47
47
|
"@quenty/signal": "7.13.0",
|
|
48
48
|
"@quenty/table": "3.9.2",
|
|
49
49
|
"@quentystudios/jest-lua": "3.10.0-quenty.2"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "e9274ae087550f64d37a3a604b867829e438f8da"
|
|
52
52
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
--!
|
|
1
|
+
--!strict
|
|
2
2
|
--[=[
|
|
3
3
|
@class PlayerKillTrackerUtils
|
|
4
4
|
]=]
|
|
@@ -10,7 +10,7 @@ local RxBinderUtils = require("RxBinderUtils")
|
|
|
10
10
|
|
|
11
11
|
local PlayerKillTrackerUtils = {}
|
|
12
12
|
|
|
13
|
-
function PlayerKillTrackerUtils.create(binder, player)
|
|
13
|
+
function PlayerKillTrackerUtils.create(binder: any, player: Player): IntValue
|
|
14
14
|
assert(typeof(player) == "Instance", "Bad player")
|
|
15
15
|
|
|
16
16
|
local score = Instance.new("IntValue")
|
|
@@ -24,14 +24,14 @@ function PlayerKillTrackerUtils.create(binder, player)
|
|
|
24
24
|
return score
|
|
25
25
|
end
|
|
26
26
|
|
|
27
|
-
function PlayerKillTrackerUtils.observeBrio(binder, player)
|
|
27
|
+
function PlayerKillTrackerUtils.observeBrio(binder: any, player: Player): any
|
|
28
28
|
assert(typeof(player) == "Instance" and player:IsA("Player"), "Bad player")
|
|
29
29
|
|
|
30
30
|
-- This ain't performant, but it's ok
|
|
31
31
|
return RxBinderUtils.observeBoundChildClassBrio(binder, player)
|
|
32
32
|
end
|
|
33
33
|
|
|
34
|
-
function PlayerKillTrackerUtils.getPlayerKillTracker(binder, team)
|
|
34
|
+
function PlayerKillTrackerUtils.getPlayerKillTracker(binder: any, team: Instance): any
|
|
35
35
|
return BinderUtils.findFirstChild(binder, team)
|
|
36
36
|
end
|
|
37
37
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
--!
|
|
1
|
+
--!strict
|
|
2
2
|
--[=[
|
|
3
3
|
@class TeamKillTrackerUtils
|
|
4
4
|
]=]
|
|
@@ -10,7 +10,7 @@ local RxBinderUtils = require("RxBinderUtils")
|
|
|
10
10
|
|
|
11
11
|
local TeamKillTrackerUtils = {}
|
|
12
12
|
|
|
13
|
-
function TeamKillTrackerUtils.create(binder)
|
|
13
|
+
function TeamKillTrackerUtils.create(binder: any): IntValue
|
|
14
14
|
local score = Instance.new("IntValue")
|
|
15
15
|
score.Name = "TeamKillTracker"
|
|
16
16
|
score.Value = 0
|
|
@@ -20,14 +20,14 @@ function TeamKillTrackerUtils.create(binder)
|
|
|
20
20
|
return score
|
|
21
21
|
end
|
|
22
22
|
|
|
23
|
-
function TeamKillTrackerUtils.observeBrio(binder, player)
|
|
23
|
+
function TeamKillTrackerUtils.observeBrio(binder: any, player: Instance): any
|
|
24
24
|
assert(typeof(player) == "Instance", "Bad player")
|
|
25
25
|
|
|
26
26
|
-- This ain't performant, but it's ok
|
|
27
27
|
return RxBinderUtils.observeBoundChildClassBrio(binder, player)
|
|
28
28
|
end
|
|
29
29
|
|
|
30
|
-
function TeamKillTrackerUtils.getTeamKillTracker(binder, team)
|
|
30
|
+
function TeamKillTrackerUtils.getTeamKillTracker(binder: any, team: Instance): any
|
|
31
31
|
return BinderUtils.findFirstChild(binder, team)
|
|
32
32
|
end
|
|
33
33
|
|