@quenty/characterutils 12.32.1 → 12.33.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 +6 -0
- package/package.json +2 -2
- package/src/Shared/RxCharacterUtils.lua +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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.33.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.32.1...@quenty/characterutils@12.33.0) (2026-07-15)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- Don't warn on the server, this is a valid usage ([78cf6c7](https://github.com/Quenty/NevermoreEngine/commit/78cf6c71e7b0ee01228b833175d8d5e8a7c703eb))
|
|
11
|
+
|
|
6
12
|
## [12.32.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.32.0...@quenty/characterutils@12.32.1) (2026-05-30)
|
|
7
13
|
|
|
8
14
|
**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.
|
|
3
|
+
"version": "12.33.0",
|
|
4
4
|
"description": "CharacterUtils",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"publishConfig": {
|
|
42
42
|
"access": "public"
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "d577f1529aa03f5e77534145501e878bde07ca98"
|
|
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
|