Skip to content

Commit

Permalink
Remove some unused code
Browse files Browse the repository at this point in the history
  • Loading branch information
nebularg committed Apr 12, 2024
1 parent f5cb673 commit e81922b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
1 change: 0 additions & 1 deletion Code/CombatEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1580,7 +1580,6 @@ function module:RegisterCombatEvent(data)
tinsert(combatLogEvents[eventType], {
category = category,
name = data.name,
infofunc = v.func,
checkfunc = check,
}
)
Expand Down
10 changes: 0 additions & 10 deletions Data/Auras.lua
Original file line number Diff line number Diff line change
Expand Up @@ -483,14 +483,6 @@ Parrot:RegisterCombatEvent{
--[[============================================================================
-- Item Buffs
--============================================================================]]
local function parseItembuff(srcGUID, srcName, srcFlags, dstGUID, dstName,
dstFlags, spellName, itemId, itemName)
local info = newList()
info.itemId = itemId
info.abilityName = spellName
info.itemName = itemName
return info
end

Parrot:RegisterCombatEvent{
category = "Notification",
Expand All @@ -503,7 +495,6 @@ Parrot:RegisterCombatEvent{
check = function(_, _, _, dstGUID)
return dstGUID == playerGUID
end,
func = parseItembuff,
},
},
tagTranslations = {
Expand Down Expand Up @@ -531,7 +522,6 @@ Parrot:RegisterCombatEvent{
check = function(_, _, _, dstGUID)
return dstGUID == playerGUID
end,
func = parseItembuff,
},
},
tagTranslations = {
Expand Down

0 comments on commit e81922b

Please sign in to comment.