@quenty/rogue-humanoid 10.32.6-canary.97bd47d.0 → 10.32.6-canary.9a4e7b7.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,7 +3,7 @@
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.32.6-canary.97bd47d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-humanoid@10.32.5...@quenty/rogue-humanoid@10.32.6-canary.97bd47d.0) (2025-12-30)
6
+ ## [10.32.6-canary.9a4e7b7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-humanoid@10.32.5...@quenty/rogue-humanoid@10.32.6-canary.9a4e7b7.0) (2026-01-02)
7
7
 
8
8
  **Note:** Version bump only for package @quenty/rogue-humanoid
9
9
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rogue-humanoid",
3
- "version": "10.32.6-canary.97bd47d.0",
3
+ "version": "10.32.6-canary.9a4e7b7.0",
4
4
  "description": "Roguelike humanoid properties which can be modified",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,23 +25,23 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/adorneedata": "7.22.6-canary.97bd47d.0",
29
- "@quenty/attributeutils": "14.20.5-canary.97bd47d.0",
28
+ "@quenty/adorneedata": "7.22.6-canary.9a4e7b7.0",
29
+ "@quenty/attributeutils": "14.20.5-canary.9a4e7b7.0",
30
30
  "@quenty/baseobject": "10.9.0",
31
- "@quenty/binder": "14.25.6-canary.97bd47d.0",
32
- "@quenty/brio": "14.20.4-canary.97bd47d.0",
33
- "@quenty/characterutils": "12.22.5-canary.97bd47d.0",
31
+ "@quenty/binder": "14.25.6-canary.9a4e7b7.0",
32
+ "@quenty/brio": "14.20.4-canary.9a4e7b7.0",
33
+ "@quenty/characterutils": "12.22.5-canary.9a4e7b7.0",
34
34
  "@quenty/loader": "10.9.0",
35
35
  "@quenty/maid": "3.5.0",
36
- "@quenty/playerhumanoidbinder": "14.25.6-canary.97bd47d.0",
37
- "@quenty/rogue-properties": "11.30.6-canary.97bd47d.0",
38
- "@quenty/rx": "13.20.3-canary.97bd47d.0",
36
+ "@quenty/playerhumanoidbinder": "14.25.6-canary.9a4e7b7.0",
37
+ "@quenty/rogue-properties": "11.30.6-canary.9a4e7b7.0",
38
+ "@quenty/rx": "13.20.3-canary.9a4e7b7.0",
39
39
  "@quenty/servicebag": "11.13.3",
40
40
  "@quenty/table": "3.8.0",
41
- "@quenty/valueobject": "13.21.6-canary.97bd47d.0"
41
+ "@quenty/valueobject": "13.21.6-canary.9a4e7b7.0"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "97bd47d341017152f91a28d8444252d20a8de9fa"
46
+ "gitHead": "9a4e7b734bdd71d5ba5c38742d37402ce2158ebc"
47
47
  }
@@ -6,12 +6,13 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local Binder = require("Binder")
8
8
  local RogueHumanoidBase = require("RogueHumanoidBase")
9
+ local ServiceBag = require("ServiceBag")
9
10
 
10
11
  local RogueHumanoidClient = setmetatable({}, RogueHumanoidBase)
11
12
  RogueHumanoidClient.ClassName = "RogueHumanoidClient"
12
13
  RogueHumanoidClient.__index = RogueHumanoidClient
13
14
 
14
- function RogueHumanoidClient.new(humanoid, serviceBag)
15
+ function RogueHumanoidClient.new(humanoid, serviceBag: ServiceBag.ServiceBag)
15
16
  local self = setmetatable(RogueHumanoidBase.new(humanoid, serviceBag), RogueHumanoidClient)
16
17
 
17
18
  return self
@@ -6,12 +6,13 @@ local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local PlayerHumanoidBinder = require("PlayerHumanoidBinder")
8
8
  local RogueHumanoidBase = require("RogueHumanoidBase")
9
+ local ServiceBag = require("ServiceBag")
9
10
 
10
11
  local RogueHumanoid = setmetatable({}, RogueHumanoidBase)
11
12
  RogueHumanoid.ClassName = "RogueHumanoid"
12
13
  RogueHumanoid.__index = RogueHumanoid
13
14
 
14
- function RogueHumanoid.new(humanoid, serviceBag)
15
+ function RogueHumanoid.new(humanoid, serviceBag: ServiceBag.ServiceBag)
15
16
  local self = setmetatable(RogueHumanoidBase.new(humanoid, serviceBag), RogueHumanoid)
16
17
 
17
18
  return self
@@ -13,6 +13,7 @@ local CharacterUtils = require("CharacterUtils")
13
13
  local RogueHumanoidProperties = require("RogueHumanoidProperties")
14
14
  local Rx = require("Rx")
15
15
  local RxRootPartUtils = require("RxRootPartUtils")
16
+ local ServiceBag = require("ServiceBag")
16
17
  local ValueObject = require("ValueObject")
17
18
 
18
19
  local GROWTH_VALUE_NAMES = {
@@ -32,7 +33,7 @@ local RogueHumanoidBase = setmetatable({}, BaseObject)
32
33
  RogueHumanoidBase.ClassName = "RogueHumanoidBase"
33
34
  RogueHumanoidBase.__index = RogueHumanoidBase
34
35
 
35
- function RogueHumanoidBase.new(humanoid, serviceBag)
36
+ function RogueHumanoidBase.new(humanoid, serviceBag: ServiceBag.ServiceBag)
36
37
  local self = setmetatable(BaseObject.new(humanoid), RogueHumanoidBase)
37
38
 
38
39
  self._serviceBag = assert(serviceBag, "No serviceBag")