@quenty/chatproviderservice 9.23.0-canary.527.65d09e1.0 → 9.23.1-canary.531.760eab8.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,18 @@
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
- # [9.23.0-canary.527.65d09e1.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.22.0...@quenty/chatproviderservice@9.23.0-canary.527.65d09e1.0) (2025-01-17)
6
+ ## [9.23.1-canary.531.760eab8.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.23.0...@quenty/chatproviderservice@9.23.1-canary.531.760eab8.0) (2025-01-22)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * Fix ChatProviderCommandService ([ffbde7d](https://github.com/Quenty/NevermoreEngine/commit/ffbde7d3aaabe22578c47aad3baa058007e19bf1))
12
+
13
+
14
+
15
+
16
+
17
+ # [9.23.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.22.0...@quenty/chatproviderservice@9.23.0) (2025-01-19)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/chatproviderservice
9
20
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/chatproviderservice",
3
- "version": "9.23.0-canary.527.65d09e1.0",
3
+ "version": "9.23.1-canary.531.760eab8.0",
4
4
  "description": "Provide wrapper around chat system to allow tags to be set",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -29,9 +29,9 @@
29
29
  "@quenty/baseobject": "10.7.1",
30
30
  "@quenty/binder": "14.17.0",
31
31
  "@quenty/brio": "14.15.0",
32
- "@quenty/clienttranslator": "14.17.0-canary.527.65d09e1.0",
33
- "@quenty/cmdrservice": "13.20.0-canary.527.65d09e1.0",
34
- "@quenty/color3utils": "11.16.0-canary.527.65d09e1.0",
32
+ "@quenty/clienttranslator": "14.17.0",
33
+ "@quenty/cmdrservice": "13.20.1-canary.531.760eab8.0",
34
+ "@quenty/color3utils": "11.16.0",
35
35
  "@quenty/datastore": "13.18.0",
36
36
  "@quenty/instanceutils": "13.15.0",
37
37
  "@quenty/loader": "10.7.1",
@@ -55,5 +55,5 @@
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "65d09e10d2b3519746fd1bcd592425cd985dbaf6"
58
+ "gitHead": "760eab89580cb2ebf422457778c424fd3ab28f00"
59
59
  }
@@ -22,6 +22,7 @@ function ChatProviderCommandService:Init(serviceBag)
22
22
 
23
23
  -- External
24
24
  self._cmdrService = self._serviceBag:GetService(require("CmdrService"))
25
+ self._permissionService = self._serviceBag:GetService(require("PermissionService"))
25
26
 
26
27
  -- Internal
27
28
  self._chatProviderService = self._serviceBag:GetService(require("ChatProviderService"))
@@ -18,8 +18,7 @@ HasChatTagsBase.__index = HasChatTagsBase
18
18
  function HasChatTagsBase.new(player)
19
19
  local self = setmetatable(BaseObject.new(player), HasChatTagsBase)
20
20
 
21
- self._lastChatTags = ValueObject.new(nil)
22
- self._maid:GiveTask(self._lastChatTags)
21
+ self._lastChatTags = self._maid:Add(ValueObject.new(nil))
23
22
 
24
23
  self._maid:GiveTask(task.defer(function()
25
24
  self._maid:GiveTask(self:_observeTagDataListBrio():Subscribe(function(brio)