From 6f6d79613425538b4b520bb0de34fdb79bf57a37 Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Tue, 6 Jul 2021 21:26:45 -0300 Subject: [PATCH] Removed some debug prints from the coach feature :) --- functions/pack.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/pack.lua b/functions/pack.lua index 07db92322..e6d05ecae 100644 --- a/functions/pack.lua +++ b/functions/pack.lua @@ -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 @@ -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")