Skip to content

Commit

Permalink
version up
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed Dec 5, 2020
1 parent 7ed1182 commit 3af27dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions boot.lua
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
_ = nil
_detalhes = LibStub("AceAddon-3.0"):NewAddon("_detalhes", "AceTimer-3.0", "AceComm-3.0", "AceSerializer-3.0", "NickTag-1.0")

_detalhes.build_counter = 8001
_detalhes.alpha_build_counter = 8001 --if this is higher than the regular counter, use it instead
_detalhes.build_counter = 8002
_detalhes.alpha_build_counter = 8002 --if this is higher than the regular counter, use it instead
_detalhes.game_version = "v9.0.1"
_detalhes.userversion = "v9.0.1." .. _detalhes.build_counter
_detalhes.realversion = 144 --core version, this is used to check API version for scripts and plugins (see alias below)
Expand Down
4 changes: 3 additions & 1 deletion functions/pack.lua
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,8 @@ function Details.packFunctions.PackCombatData(combatObject, flags)
--print("finished export (debug):", exportedString) --debug
--print("uncompressed (debug):", format("%.2f", #exportedString/1024), "KBytes")

--if true then return exportedString end

--compress
local LibDeflate = _G.LibStub:GetLibrary("LibDeflate")
local dataCompressed = LibDeflate:CompressDeflate(exportedString, {level = 9})
Expand Down Expand Up @@ -413,7 +415,7 @@ function Details.packFunctions.PackDamage(combatObject)
end
end

if (not playerIndex) then
if (not playerIndex) then --no player index
return
end

Expand Down

0 comments on commit 3af27dc

Please sign in to comment.