From aef114249fcd9e22bfe37adc32a6b413d9972da6 Mon Sep 17 00:00:00 2001 From: Tercio Jose Date: Mon, 21 Mar 2022 18:13:58 -0300 Subject: [PATCH] Removed alpha prints --- boot.lua | 6 +++--- functions/deathrecap.lua | 8 ++++---- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/boot.lua b/boot.lua index f47406d75..547273c1d 100644 --- a/boot.lua +++ b/boot.lua @@ -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 @@ -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"}, diff --git a/functions/deathrecap.lua b/functions/deathrecap.lua index 50142ab5c..86260b0e2 100644 --- a/functions/deathrecap.lua +++ b/functions/deathrecap.lua @@ -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] @@ -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