Skip to content

Commit

Permalink
Fixed SHOW_COMBAT_TEXT uvar
Browse files Browse the repository at this point in the history
  • Loading branch information
Ketho committed Dec 28, 2022
1 parent f771084 commit b322fd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ end
function SCR:Output(msg, color)
-- Legion: if we can to output to Blizzard FCT but LibSink sees
-- that Blizzard FCT is disabled (only the option), then we work around it
if profile.sink20OutputSink == "Blizzard" and SHOW_COMBAT_TEXT == "0" then
if profile.sink20OutputSink == "Blizzard" and GetCVar("enableFloatingCombatText") == "1" then
CombatText_AddMessage(msg, COMBAT_TEXT_SCROLL_FUNCTION, color.r, color.g, color.b)
else
self:Pour(msg, color.r, color.g, color.b)
Expand Down

0 comments on commit b322fd8

Please sign in to comment.