Thread: Update 5.3
View Single Post
01/22/20, 06:51 AM   #3
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,578
The following entry has been added to the addon compatibility alias and may explain what's going on with the chat system:
Lua Code:
  1. -- CHAT_SYSTEM refactor
  2. -- Many of the internals/method calls have changed in chat system to support multiple chat systems at once.
  3. -- This will preserve compatibility with addons that add messages to chat using CHAT_SYSTEM:AddMessage(), but more complex chat addons may need rewrites.
  4. CHAT_SYSTEM = KEYBOARD_CHAT_SYSTEM
  5. function CHAT_SYSTEM:AddMessage(messageText)
  6.     return CHAT_ROUTER:AddSystemMessage(messageText)
  7. end
  Reply With Quote