View Single Post
07/13/15, 01:47 PM   #4
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Yep. In Harven's Chat Completion the function StartTextEntry is called with a text only, too.

This is one way to fix it:
Code:
do
	local orgStartTextEntry = SharedChatSystem.StartTextEntry
	function SharedChatSystem:StartTextEntry(text, channel, ...)
		orgStartTextEntry(self, text, channel or self.currentChannel or CHAT_CHANNEL_SAY, ...)
	end
end
That's something for merlight's Aid ZO UI Fixes, I think