Fix for function call on the new trash boss segments cleanup
This commit is contained in:
@@ -19,8 +19,8 @@
|
|||||||
local addonName, Details222 = ...
|
local addonName, Details222 = ...
|
||||||
local version = GetBuildInfo()
|
local version = GetBuildInfo()
|
||||||
|
|
||||||
Details.build_counter = 12809
|
Details.build_counter = 12810
|
||||||
Details.alpha_build_counter = 12809 --if this is higher than the regular counter, use it instead
|
Details.alpha_build_counter = 12810 --if this is higher than the regular counter, use it instead
|
||||||
Details.dont_open_news = true
|
Details.dont_open_news = true
|
||||||
Details.game_version = version
|
Details.game_version = version
|
||||||
Details.userversion = version .. " " .. Details.build_counter
|
Details.userversion = version .. " " .. Details.build_counter
|
||||||
|
|||||||
@@ -579,7 +579,7 @@ function Details222.Combat.AddCombat(combatToBeAdded)
|
|||||||
|
|
||||||
--is the wipe counter saved in the details database?
|
--is the wipe counter saved in the details database?
|
||||||
if (IsInRaid() and Details.zone_type == "raid") then --filter only for raids
|
if (IsInRaid() and Details.zone_type == "raid") then --filter only for raids
|
||||||
local bRunOkay2, result = getAmountOfSegmentsInThisBoss(combatToBeAdded)
|
local bRunOkay2, result = pcall(getAmountOfSegmentsInThisBoss, combatToBeAdded)
|
||||||
if (not bRunOkay2) then
|
if (not bRunOkay2) then
|
||||||
Details:Msg("bRunOkay2 Error > failed to get amount of segments in this boss > ", result)
|
Details:Msg("bRunOkay2 Error > failed to get amount of segments in this boss > ", result)
|
||||||
else
|
else
|
||||||
|
|||||||
Reference in New Issue
Block a user