@quenty/characterutils 12.32.1 → 12.34.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,16 @@
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
+ # [12.34.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.33.0...@quenty/characterutils@12.34.0) (2026-07-18)
7
+
8
+ **Note:** Version bump only for package @quenty/characterutils
9
+
10
+ # [12.33.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.32.1...@quenty/characterutils@12.33.0) (2026-07-15)
11
+
12
+ ### Bug Fixes
13
+
14
+ - Don't warn on the server, this is a valid usage ([78cf6c7](https://github.com/Quenty/NevermoreEngine/commit/78cf6c71e7b0ee01228b833175d8d5e8a7c703eb))
15
+
6
16
  ## [12.32.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.32.0...@quenty/characterutils@12.32.1) (2026-05-30)
7
17
 
8
18
  **Note:** Version bump only for package @quenty/characterutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/characterutils",
3
- "version": "12.32.1",
3
+ "version": "12.34.0",
4
4
  "description": "CharacterUtils",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,18 +28,18 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/brio": "14.30.1",
31
+ "@quenty/brio": "14.31.0",
32
32
  "@quenty/deferred": "2.3.2",
33
- "@quenty/instanceutils": "13.30.1",
33
+ "@quenty/instanceutils": "13.31.0",
34
34
  "@quenty/loader": "10.11.0",
35
35
  "@quenty/maid": "3.9.0",
36
36
  "@quenty/nevermore-test-runner": "1.4.0",
37
- "@quenty/promise": "10.18.1",
38
- "@quenty/rx": "13.28.3",
37
+ "@quenty/promise": "10.19.0",
38
+ "@quenty/rx": "13.29.0",
39
39
  "@quentystudios/jest-lua": "3.10.0-quenty.2"
40
40
  },
41
41
  "publishConfig": {
42
42
  "access": "public"
43
43
  },
44
- "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
44
+ "gitHead": "cbbb89635bfdcbf32f26a40422ac736292917cca"
45
45
  }
@@ -7,6 +7,7 @@
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
9
  local Players = game:GetService("Players")
10
+ local RunService = game:GetService("RunService")
10
11
 
11
12
  local Brio = require("Brio")
12
13
  local Maid = require("Maid")
@@ -67,7 +68,7 @@ function RxCharacterUtils.observeIsOfLocalCharacter(instance: Instance): Observa
67
68
  assert(typeof(instance) == "Instance", "Bad instance")
68
69
 
69
70
  local localPlayer = Players.LocalPlayer
70
- if not localPlayer then
71
+ if not localPlayer and RunService:IsClient() then
71
72
  warn("[RxCharacterUtils] - No localPlayer")
72
73
  return Rx.EMPTY :: any
73
74
  end