Fix for tracking other players' abilities
ahillgrove opened this issue ยท 1 comments
The and/or construction for checking spells you have is losing the restriction on unit == "player"
Change
if unit == "player" and
to
if unit == "player" then
if
-- checks for spells
then
-- add event
end
end