WoWInterface SVN NightWatch

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 19 to Rev 20
    Reverse comparison

Rev 19 → Rev 20

NightWatch.lua
55,9 → 55,9
 
function addon:defaultMsgFormat()
return {
chat = "<%C's> %s%t: %f",
chat = "<%C's> %f %s%t",
chatTarget = " on <<%t>>",
whisper = "<%C's> %s%t: %f",
whisper = "<%C's> %f %s%t",
whisperTarget = " on YOU",
}
end
75,10 → 75,12
customMsgFormat = addon:defaultMsgFormat(),
-- flagMap is used as a translation lookup and to help generate the default flag options for each watched spell.
flagMap = {
SPELL_CAST_START = "started",
SPELL_CAST_SUCCESS = "success",
SPELL_CAST_FAILED = "failed",
SPELL_CAST_START = "starts casting",
SPELL_CAST_SUCCESS = "cast",
SPELL_CAST_FAILED = "failed casting",
SPELL_RESURRECT = "resurrected",
SPELL_CREATE = "creates",
SPELL_MISSED = "missed with",
},
},
}