mirror of
https://github.com/parnic/ice-hud.git
synced 2025-06-16 06:40:13 -05:00
- added a global toggle for DogTags so they can be enabled or disabled for the mod
- added an optional rare/elite/rare-elite indicator to the target health bar (off by default) - made configuration mode show target raid icons (and the new elite indicator as well)
This commit is contained in:
10
IceCore.lua
10
IceCore.lua
@ -61,6 +61,8 @@ function IceCore.prototype:init()
|
||||
|
||||
barBlendMode = "BLEND",
|
||||
barBgBlendMode = "BLEND",
|
||||
|
||||
bShouldUseDogTags = true
|
||||
}
|
||||
|
||||
self:LoadPresets()
|
||||
@ -450,6 +452,14 @@ function IceCore.prototype:ConfigModeToggle(bWantConfig)
|
||||
end
|
||||
end
|
||||
|
||||
function IceCore.prototype:ShouldUseDogTags()
|
||||
return AceLibrary:HasInstance("LibDogTag-3.0") and self.settings.bShouldUseDogTags
|
||||
end
|
||||
|
||||
function IceCore.prototype:SetShouldUseDogTags(should)
|
||||
self.settings.bShouldUseDogTags = should
|
||||
end
|
||||
|
||||
|
||||
-------------------------------------------------------------------------------
|
||||
-- Presets --
|
||||
|
Reference in New Issue
Block a user