WoWInterface SVN mikma

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /DeathNote
    from Rev 467 to Rev 468
    Reverse comparison

Rev 467 → Rev 468

DeathNote.lua
21,6 → 21,7
function DeathNote:Enable()
f:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
f:RegisterEvent("UPDATE_MOUSEOVER_UNIT")
f:RegisterEvent("PLAYER_REGEN_ENABLED")
f:RegisterEvent("CHAT_MSG_ADDON")
f:RegisterEvent("PLAYER_LOGIN")
end
39,8 → 40,6
end
 
local lastdamage
local infight
 
function f:PLAYER_REGEN_ENABLED()
lastdamage = nil
end
63,7 → 62,7
end
end
if not nameexists then
print("DeathNote: "..lastdamage.." killed you. Adding in the list.")
print("DeathNote: "..lastdamage.." damaged you before you died. Adding in the list.")
table.insert(DeathNoteDB[realmName],{lastdamage,note})
end
end