- Encounter updates and framework fixes.
This commit is contained in:
+1
-1
@@ -1,5 +1,5 @@
|
||||
|
||||
local dversion = 132
|
||||
local dversion = 133
|
||||
local major, minor = "DetailsFramework-1.0", dversion
|
||||
local DF, oldminor = LibStub:NewLibrary (major, minor)
|
||||
|
||||
|
||||
+1
-1
@@ -6868,7 +6868,7 @@ DF.HealthFrameFunctions = {
|
||||
self.healAbsorbIndicator:Show()
|
||||
self.healAbsorbIndicator:SetWidth (max (1, min (width * healAbsorbPercent, abs (healthPercent - 1) * width)))
|
||||
self.healAbsorbIndicator:SetPoint ("topleft", self, "topleft", width * healthPercent, 0)
|
||||
self.healAbsorbIndicator:SetPoint ("bottomleft", self, bottom"left", width * healthPercent, 0)
|
||||
self.healAbsorbIndicator:SetPoint ("bottomleft", self, "bottomleft", width * healthPercent, 0)
|
||||
else
|
||||
self.healAbsorbIndicator:Hide()
|
||||
end
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
_ = nil
|
||||
_detalhes = LibStub("AceAddon-3.0"):NewAddon("_detalhes", "AceTimer-3.0", "AceComm-3.0", "AceSerializer-3.0", "NickTag-1.0")
|
||||
|
||||
_detalhes.build_counter = 6866
|
||||
_detalhes.build_counter = 6867
|
||||
_detalhes.alpha_build_counter = 6866 --if this is higher than the regular counter, use it instead
|
||||
_detalhes.userversion = "v8.1.0." .. _detalhes.build_counter
|
||||
_detalhes.realversion = 135 --core version, this is used to check API version for scripts and plugins (see alias below)
|
||||
|
||||
+9
-1
@@ -204,6 +204,8 @@
|
||||
local SPELLNAME_BLOODSHIELD = GetSpellInfo (263217)
|
||||
--> unliving Bwonsamdi
|
||||
local SPELLNAME_UNLIVING = GetSpellInfo (284377)
|
||||
--> discharge apetagonizer core
|
||||
local SPELLNAME_GRONG_CORE = GetSpellInfo (285660)
|
||||
|
||||
--> spells with special treatment
|
||||
local special_damage_spells = {
|
||||
@@ -424,7 +426,13 @@
|
||||
--end
|
||||
|
||||
--rules of specific encounters
|
||||
if (_current_encounter_id == 2272) then --king rastakhan --REMOVE ON 9.0 LAUNCH
|
||||
|
||||
if (_current_encounter_id == 2263) then --grong --REMOVE ON 9.0 LAUNCH
|
||||
if (spellid == 285660 or spellname == SPELLNAME_GRONG_CORE) then
|
||||
return
|
||||
end
|
||||
|
||||
elseif (_current_encounter_id == 2272) then --king rastakhan --REMOVE ON 9.0 LAUNCH
|
||||
if (alvo_serial) then
|
||||
local npcid = _select (6, _strsplit ("-", alvo_serial))
|
||||
if (npcid == "145644") then --Bwonsamdi
|
||||
|
||||
Reference in New Issue
Block a user