Bug fixes, Framework update, General changes to accommodate new systems.

This commit is contained in:
Tercio Jose
2024-02-26 14:12:11 -03:00
parent 483d9c6976
commit 32adc61608
34 changed files with 1801 additions and 524 deletions
+14 -4
View File
@@ -122,6 +122,17 @@ function SlashCmdList.DETAILS (msg, editbox)
dumpt(returnTable)
elseif (command == "mythic+") then
local statName = "mythicdungeoncompletedDF2"
local mythicDungeonRuns = Details222.PlayerStats:GetStat(statName)
dumpt(mythicDungeonRuns)
for mapChallengeModeID, mapChallengeModeData in pairs(mythicDungeonRuns) do
local mapName = C_ChallengeMode.GetMapUIInfo(mapChallengeModeID)
print(mapName, mapChallengeModeData.level, mapChallengeModeData.completed, mapChallengeModeData.time)
end
elseif (command == "mergepetspells") then --deprecated
Details.merge_pet_abilities = not Details.merge_pet_abilities
Details:Msg("Merging pet spells:", Details.merge_pet_abilities or "false")
@@ -1301,11 +1312,10 @@ function SlashCmdList.DETAILS (msg, editbox)
--]]
--set some data
newCombat:SetStartTime (GetTime() - totalTime)
newCombat:SetEndTime (GetTime())
newCombat:SetStartTime(GetTime() - totalTime)
newCombat:SetEndTime(GetTime())
newCombat.data_inicio = startDate
newCombat.data_fim = endDate
newCombat:SetDate(startDate, endDate)
--immediatly finishes the segment just started
Details:SairDoCombate()