WoWInterface SVN mikma

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /DeathNote
    from Rev 462 to Rev 463
    Reverse comparison

Rev 462 → Rev 463

DeathNote.lua
53,7 → 53,7
local note = "Killed "..playername.." in "..zonename
if DeathNoteDB.autoadd then
for k,v in pairs(DeathNoteDB[realmName]) do
if v[1] == lastdamage then
if string.lower(v[1]) == string.lower(lastdamage) then
v[2] = note
nameexists = true
end
76,7 → 76,7
if DeathNoteDB.notereceive and prefix == "DEATHNOTE" then
local name,note = string.split("|",message)
for k,v in pairs(DeathNoteDB[realmName]) do
if v[1] == name then
if string.lower(v[1]) == string.lower(name) then
v[2] = note
nameexists = true
end
285,7 → 285,7
if okay1 and okay2 then
local nameexists = false
for k,v in pairs(DeathNoteDB[realmName]) do
if v[1] == name then
if string.lower(v[1]) == string.lower(name) then
v[2] = note
nameexists = true
end