@quenty/chatproviderservice 9.18.1-canary.520.0c6df93.0 → 9.18.1-canary.520.d3b0387.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,7 @@
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.18.1-canary.520.0c6df93.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.18.0...@quenty/chatproviderservice@9.18.1-canary.520.0c6df93.0) (2024-11-14)
6
+ ## [9.18.1-canary.520.d3b0387.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/chatproviderservice@9.18.0...@quenty/chatproviderservice@9.18.1-canary.520.d3b0387.0) (2024-11-14)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/chatproviderservice",
3
- "version": "9.18.1-canary.520.0c6df93.0",
3
+ "version": "9.18.1-canary.520.d3b0387.0",
4
4
  "description": "Provide wrapper around chat system to allow tags to be set",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -55,5 +55,5 @@
55
55
  "publishConfig": {
56
56
  "access": "public"
57
57
  },
58
- "gitHead": "0c6df93f4e611dcdcf8c1fde454ee4bf7fa43ef0"
58
+ "gitHead": "d3b0387eb1eb87f8edf968cea0253fbd745ded62"
59
59
  }
@@ -67,6 +67,12 @@ function ChatProviderServiceClient:Start()
67
67
  end
68
68
  end
69
69
 
70
+ --[=[
71
+ Sends a system message to the provided TextChannel.
72
+ @param channel TextChannel
73
+ @param message string
74
+ @param color Color3?
75
+ ]=]
70
76
  function ChatProviderServiceClient:SendSystemMessage(channel: TextChannel, message: string, color: Color3?)
71
77
  assert(typeof(channel) == "Instance" and channel.ClassName == "TextChannel", "[ChatProviderServiceClient.SendSystemMessage] - Bad channel")
72
78
  assert(typeof(message) == "string", "[ChatProviderServiceClient.SendSystemMessage] - Bad message")