Skip to content

Commit e81922b

Browse files
committed
Remove some unused code
1 parent f5cb673 commit e81922b

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

Code/CombatEvents.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1580,7 +1580,6 @@ function module:RegisterCombatEvent(data)
15801580
tinsert(combatLogEvents[eventType], {
15811581
category = category,
15821582
name = data.name,
1583-
infofunc = v.func,
15841583
checkfunc = check,
15851584
}
15861585
)

Data/Auras.lua

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -483,14 +483,6 @@ Parrot:RegisterCombatEvent{
483483
--[[============================================================================
484484
-- Item Buffs
485485
--============================================================================]]
486-
local function parseItembuff(srcGUID, srcName, srcFlags, dstGUID, dstName,
487-
dstFlags, spellName, itemId, itemName)
488-
local info = newList()
489-
info.itemId = itemId
490-
info.abilityName = spellName
491-
info.itemName = itemName
492-
return info
493-
end
494486

495487
Parrot:RegisterCombatEvent{
496488
category = "Notification",
@@ -503,7 +495,6 @@ Parrot:RegisterCombatEvent{
503495
check = function(_, _, _, dstGUID)
504496
return dstGUID == playerGUID
505497
end,
506-
func = parseItembuff,
507498
},
508499
},
509500
tagTranslations = {
@@ -531,7 +522,6 @@ Parrot:RegisterCombatEvent{
531522
check = function(_, _, _, dstGUID)
532523
return dstGUID == playerGUID
533524
end,
534-
func = parseItembuff,
535525
},
536526
},
537527
tagTranslations = {

0 commit comments

Comments
 (0)