Skip to content

Commit

Permalink
Removed alpha prints
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Mar 21, 2022
1 parent c25974f commit aef1142
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

local version, build, date, tocversion = GetBuildInfo()

_detalhes.build_counter = 9721
_detalhes.alpha_build_counter = 9721 --if this is higher than the regular counter, use it instead
_detalhes.build_counter = 9722
_detalhes.alpha_build_counter = 9722 --if this is higher than the regular counter, use it instead
_detalhes.bcc_counter = 31
_detalhes.dont_open_news = true
_detalhes.game_version = version
Expand Down Expand Up @@ -425,7 +425,7 @@ do

_detalhes.BitfieldSwapDebuffsIDs = {265646, 272407, 269691, 273401, 269131, 260900, 260926, 284995, 292826, 311367, 310567, 308996, 307832, 327414, 337253,
36797, 37122, 362397}

--> auto run code
_detalhes.RunCodeTypes = {
{Name = "On Initialization", Desc = "Run code when Details! initialize or when a profile is changed.", Value = 1, ProfileKey = "on_init"},
Expand Down
8 changes: 4 additions & 4 deletions functions/deathrecap.lua
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ hooksecurefunc (_G, "DeathRecap_LoadUI", function()
local casterPrestige = evtData.casterPrestige
local spellSchool = evtData.school

print("Killed by (Blizzard-Debug): ", spellName, "amount:", amountDamage)
--print("Killed by (Blizzard-Debug): ", spellName, "amount:", amountDamage)

--recap by Details!
local deathEventsDetails = latestDeath[1]
Expand All @@ -640,15 +640,15 @@ hooksecurefunc (_G, "DeathRecap_LoadUI", function()
if (type(evType) == "boolean" and evType) then
local spellName, _, spellIcon = Details.GetSpellInfo(spellId)
if (spellName) then
print("Killed by (Details!-Debug): ", spellName, "amount:", amount)
--print("Killed by (Details!-Debug): ", spellName, "amount:", amount)
else
print("Killed by (Details!-Debug): spell not found")
--print("Killed by (Details!-Debug): spell not found")
end
break
end
end

Details:Msg("the message above are debugs of an Alpha version of Details!")
--Details:Msg("the message above are debugs of an Alpha version of Details!")

local whatKilledThePlayer = 0
end
Expand Down

0 comments on commit aef1142

Please sign in to comment.