Accessing globals
Dairyman opened this issue ยท 1 comments
Hi, this classic changes write/read now global variables
Change:
Lines 112 to 114 in 4e9b19b
To:
local incoming = 0
if not Plexus:IsClassicWow() then
incoming = UnitGetIncomingHeals(unit) or 0
end
And
Lines 96 to 98 in 4e9b19b
To:
local amount = 0
if not Plexus:IsClassicWow() then
amount = UnitIsVisible(unit) and UnitGetTotalAbsorbs(unit) or 0
end