Skip to content

Commit

Permalink
removed debug prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Aug 17, 2024
1 parent 6efca5b commit c6bbeb0
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions core/gears.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1960,7 +1960,7 @@ function Details.Database.StoreEncounter(combat)
dps_best_raid = 0,
dps_best_raid_when = 0
}
print(4)

---@type details_bosskillinfo
local bossData = totalkillsTable[encounterId][diffName]
---@type combattime
Expand Down Expand Up @@ -1997,7 +1997,7 @@ function Details.Database.StoreEncounter(combat)
bossData.dps_best_raid_when = time()
end
end
print(5, diffName)

--check for heroic and mythic
if (Details222.storage.IsDebug or Details222.storage.DiffNamesHash[diffName]) then
--check the guild name
Expand Down Expand Up @@ -2046,8 +2046,6 @@ function Details.Database.StoreEncounter(combat)
local damageContainer = combat:GetContainer(DETAILS_ATTRIBUTE_DAMAGE)
local healingContainer = combat:GetContainer(DETAILS_ATTRIBUTE_HEAL)

print(6, diffName)

for i = 1, GetNumGroupMembers() do
local role = UnitGroupRolesAssigned(cachedRaidUnitIds[i])

Expand Down Expand Up @@ -2089,8 +2087,6 @@ function Details.Database.StoreEncounter(combat)
end
end

print(7, diffName)

--add the encounter data
tinsert(allEncountersStored, combatResultData)
if (Details.debug) then
Expand Down

0 comments on commit c6bbeb0

Please sign in to comment.