@quenty/cmdrservice 13.45.1 → 13.45.2
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 +3 -3
- package/src/Server/CmdrService.lua +1 -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
|
+
## [13.45.2](https://github.com/Quenty/NevermoreEngine/compare/@quenty/cmdrservice@13.45.1...@quenty/cmdrservice@13.45.2) (2026-06-03)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- multi player studio test has cmdr permissions ([ea41608](https://github.com/Quenty/NevermoreEngine/commit/ea41608eaab1479fd4141b7e2a92444194ba55e3))
|
|
11
|
+
|
|
6
12
|
## [13.45.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/cmdrservice@13.45.0...@quenty/cmdrservice@13.45.1) (2026-05-30)
|
|
7
13
|
|
|
8
14
|
**Note:** Version bump only for package @quenty/cmdrservice
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quenty/cmdrservice",
|
|
3
|
-
"version": "13.45.
|
|
3
|
+
"version": "13.45.2",
|
|
4
4
|
"description": "Bridge between cmdr and Nevermore services using servicebag",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Roblox",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"@quenty/loader": "10.11.0",
|
|
32
32
|
"@quenty/maid": "3.9.0",
|
|
33
33
|
"@quenty/nevermore-test-runner": "1.4.0",
|
|
34
|
-
"@quenty/permissionprovider": "14.38.
|
|
34
|
+
"@quenty/permissionprovider": "14.38.2",
|
|
35
35
|
"@quenty/promise": "10.18.1",
|
|
36
36
|
"@quenty/remoting": "12.32.1",
|
|
37
37
|
"@quenty/servicebag": "11.18.1",
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"publishConfig": {
|
|
43
43
|
"access": "public"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "1acafc712ce34f5dbaa70bb23b16da95e9cd3f82"
|
|
46
46
|
}
|
|
@@ -99,7 +99,7 @@ function CmdrService.Init(self: CmdrService, serviceBag: ServiceBag.ServiceBag)
|
|
|
99
99
|
end
|
|
100
100
|
end
|
|
101
101
|
|
|
102
|
-
if not provider:IsAdmin(context.Executor) then
|
|
102
|
+
if not provider:IsAdmin(context.Executor) and not RunService:IsStudio() then
|
|
103
103
|
return "You don't have permission to run this command"
|
|
104
104
|
else
|
|
105
105
|
-- allow
|