Merge pull request #82 from martindev446/master

Chat option "Allowed Combat Repeat" combat fix
This commit is contained in:
Crum
2019-01-18 19:54:37 -06:00
committed by GitHub
+2
View File
@@ -976,6 +976,7 @@ end
local function OnTextChanged(self) local function OnTextChanged(self)
local text = self:GetText() local text = self:GetText()
if UnitAffectingCombat('player') then
local MIN_REPEAT_CHARACTERS = E.db.chat.numAllowedCombatRepeat local MIN_REPEAT_CHARACTERS = E.db.chat.numAllowedCombatRepeat
if strlen(text) > MIN_REPEAT_CHARACTERS then if strlen(text) > MIN_REPEAT_CHARACTERS then
local repeatChar = true local repeatChar = true
@@ -990,6 +991,7 @@ local function OnTextChanged(self)
return return
end end
end end
end
if strlen(text) < 5 then if strlen(text) < 5 then
if strsub(text, 1, 4) == "/tt " then if strsub(text, 1, 4) == "/tt " then