@quenty/rogue-humanoid 1.2.1 → 2.0.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,22 @@
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
+ # [2.0.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-humanoid@1.2.1...@quenty/rogue-humanoid@2.0.0) (2022-08-14)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * RogueHumanoid jump height would sometimes not be respected. This ensures we use jump height ([da44dff](https://github.com/Quenty/NevermoreEngine/commit/da44dff7f07dce12abf05bc0e52ab15bd3c09fb2))
12
+
13
+
14
+ ### Features
15
+
16
+ * Add ServiceName to most services for faster debugging ([39fc3f4](https://github.com/Quenty/NevermoreEngine/commit/39fc3f4f2beb92fff49b2264424e07af7907324e))
17
+
18
+
19
+
20
+
21
+
6
22
  ## [1.2.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/rogue-humanoid@1.2.0...@quenty/rogue-humanoid@1.2.1) (2022-08-11)
7
23
 
8
24
  **Note:** Version bump only for package @quenty/rogue-humanoid
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/rogue-humanoid",
3
- "version": "1.2.1",
3
+ "version": "2.0.0",
4
4
  "description": "Roguelike humanoid properties which can be modified",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,21 +25,21 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/attributeutils": "^6.2.0",
28
+ "@quenty/attributeutils": "^7.0.0",
29
29
  "@quenty/baseobject": "^5.1.0",
30
- "@quenty/binder": "^6.3.0",
31
- "@quenty/brio": "^6.2.0",
30
+ "@quenty/binder": "^7.0.0",
31
+ "@quenty/brio": "^7.0.0",
32
32
  "@quenty/loader": "^5.0.0",
33
33
  "@quenty/maid": "^2.4.0",
34
- "@quenty/playerhumanoidbinder": "^6.3.0",
35
- "@quenty/rogue-properties": "^2.3.1",
36
- "@quenty/rx": "^5.2.0",
34
+ "@quenty/playerhumanoidbinder": "^7.0.0",
35
+ "@quenty/rogue-properties": "^3.0.0",
36
+ "@quenty/rx": "^6.0.0",
37
37
  "@quenty/servicebag": "^5.1.0",
38
38
  "@quenty/table": "^3.1.0",
39
- "@quenty/valueobject": "^5.2.0"
39
+ "@quenty/valueobject": "^6.0.0"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "45ffe88b893e29690163a42c3830c983f6098a59"
44
+ "gitHead": "dbb62609f980983cc32da90acfef13e30ed41113"
45
45
  }
@@ -5,6 +5,7 @@
5
5
  local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local RogueHumanoidServiceClient = {}
8
+ RogueHumanoidServiceClient.ServiceName = "RogueHumanoidServiceClient"
8
9
 
9
10
  function RogueHumanoidServiceClient:Init(serviceBag)
10
11
  assert(not self._serviceBag, "Already initialized")
@@ -31,6 +31,7 @@ function RogueHumanoid.new(humanoid, serviceBag)
31
31
  self._obj.WalkSpeed = walkSpeed
32
32
  end))
33
33
  self._maid:GiveTask(self._properties.JumpHeight:Observe():Subscribe(function(jumpHeight)
34
+ self._obj.UseJumpPower = false
34
35
  self._obj.JumpHeight = jumpHeight
35
36
  end))
36
37
 
@@ -5,6 +5,7 @@
5
5
  local require = require(script.Parent.loader).load(script)
6
6
 
7
7
  local RogueHumanoidService = {}
8
+ RogueHumanoidService.ServiceName = "RogueHumanoidService"
8
9
 
9
10
  function RogueHumanoidService:Init(serviceBag)
10
11
  assert(not self._serviceBag, "Already initialized")