WoWInterface SVN TotemGuru

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk
    from Rev 36 to Rev 37
    Reverse comparison

Rev 36 → Rev 37

TotemGuru.toc
17,11 → 17,11
-- along with TotemGuru. If not, see <http://www.gnu.org/licenses/>.
 
## Author: EasySham@Terenas-EU
## Interface: 40000
## Interface: 40100
## Notes: Shows totems dropped by other people in the raid.
## SavedVariablesPerCharacter: TotemGuruConfig
## Title: TotemGuru
## Version: 4.2.0
## Version: 4.2.1
## SVN wowi:revision
 
libs\LibTalentQuery-1.0\LibStub\LibStub.lua
TotemGuru.lua
132,9 → 132,9
end
if (TotemGuruData.VariablesLoaded) then
if (event == "COMBAT_LOG_EVENT_UNFILTERED") then
local timestamp, combatEvent, sourceGUID, sourceName, sourceFlags, destGUID, destName, destFlags = ...; -- Those arguments appear for all combat event variants.
local timestamp, combatEvent, hideCaster, sourceGUID, sourceName, sourceFlags, destGUID, destName, destFlags = ...; -- Those arguments appear for all combat event variants.
if (select(2,...) == "SPELL_SUMMON") then
local spellID = select(9,...);
local spellID = select(10,...);
local spellName, rank, icon, cost, isFunnel, powerType, castTime, minRange, maxRange = GetSpellInfo(spellID);
if(TotemGuruTotemsInfo[icon]) then
if TGDebug then print(...) end