WoWInterface SVN mikma

Compare Revisions

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

Rev 468 → Rev 467

DeathNote.lua
21,7 → 21,6
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
40,6 → 39,8
end
 
local lastdamage
local infight
 
function f:PLAYER_REGEN_ENABLED()
lastdamage = nil
end
62,7 → 63,7
end
end
if not nameexists then
print("DeathNote: "..lastdamage.." damaged you before you died. Adding in the list.")
print("DeathNote: "..lastdamage.." killed you. Adding in the list.")
table.insert(DeathNoteDB[realmName],{lastdamage,note})
end
end