Skip to content

Commit

Permalink
Fix luacheck violations
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharparam committed Nov 12, 2023
1 parent e95c9f1 commit 3ffc62e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions .luacheckrc
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ stds.wow = {
"InterfaceOptionsFrame_OpenToCategory",
"IsAddOnLoaded",
"IsControlKeyDown",
"IsGUIDInGroup",
"IsInGroup",
"IsInRaid",
"IsShiftKeyDown",
Expand Down
8 changes: 7 additions & 1 deletion KillTrack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,13 @@ function KT.Events.COMBAT_LOG_EVENT_UNFILTERED(self)
local pass

if self.Debug then
self:DebugMsg(("CLEU - %s: SRC[%s (%s)] DST[%s (%s)]"):format(event, tostring(s_guid), tostring(s_name), tostring(d_guid), tostring(d_name)))
self:DebugMsg(
("CLEU - %s: SRC[%s (%s)] DST[%s (%s)]"):format(
event,
tostring(s_guid),
tostring(s_name),
tostring(d_guid),
tostring(d_name)))
self:DebugMsg("d_id = " .. tostring(d_id))
self:DebugMsg("firstDamage = " .. firstDamage)
self:DebugMsg("lastDamage = " .. lastDamage)
Expand Down

0 comments on commit 3ffc62e

Please sign in to comment.