Skip to content

Commit

Permalink
Removed some debug prints from the coach feature :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Jul 7, 2021
1 parent 6823f59 commit 6f6d796
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions functions/pack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -107,17 +107,17 @@ function Details.packFunctions.PackCombatData(combatObject, flags)
end

if (bit.band(flags, 0x1) ~= 0) then
print("pack damage")
---print("pack damage")
Details.packFunctions.PackDamage(combatObject)
end

if (bit.band(flags, 0x2) ~= 0) then
print("pack heal")
--print("pack heal")
Details.packFunctions.PackHeal(combatObject)
end

if (bit.band(flags, 0x8) ~= 0) then
print("pack utility")
--print("pack utility")
Details.packFunctions.PackUtility(combatObject)
end

Expand Down Expand Up @@ -172,7 +172,7 @@ function Details.packFunctions.PackCombatData(combatObject, flags)

--Details:Dump({exportedString})

print("EXPORTING STRING FINAL:", exportedString)
--print("EXPORTING STRING FINAL:", exportedString)

--compress
local LibDeflate = _G.LibStub:GetLibrary("LibDeflate")
Expand Down

0 comments on commit 6f6d796

Please sign in to comment.