Commit 062ebf3d authored by Ivaria's avatar Ivaria
Browse files

Fixed usage of deprecated Blizzard API HasLFGRestriction

parent 229a23c6
## Interface: 11303
## Title: VuhDo ['vu:du:]
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.110-classic
## Version: 3.111-classic
## Notes: Raid Frames providing click-heal functionality, buff and debuff control, main tank management and much more
## SavedVariablesPerCharacter: VUHDO_CONFIG, VUHDO_PANEL_SETUP, VUHDO_SPELL_ASSIGNMENTS, VUHDO_HOSTILE_SPELL_ASSIGNMENTS, VUHDO_MM_SETTINGS, VUHDO_PLAYER_TARGETS, VUHDO_MAINTANK_NAMES, VUHDO_BUFF_SETTINGS, VUHDO_POWER_TYPE_COLORS, VUHDO_SPELLS_KEYBOARD, VUHDO_SPELL_CONFIG, VUHDO_BUFF_ORDER, VUHDO_SPEC_LAYOUTS, VUHDO_GROUP_SIZE, VUHDO_RAID, VUHDO_INDICATOR_CONFIG
## SavedVariables: VUHDO_DEFAULT_LAYOUT, VUHDO_DEFAULT_PROFILE, VUHDO_PROFILES, VUHDO_MANUAL_ROLES, VUHDO_SPELL_LAYOUTS, VUHDO_USER_CLASS_COLORS, VUHDO_DEBUFF_BLACKLIST, VUHDO_BOUQUETS, VUHDO_COMBAT_LOG_TRACE, VUHDO_GLOBAL_CONFIG, VUHDO_DEBUG
......
## Interface: 11303
## Title: VuhDo ['vu:du:] - Options
## Author: Iza@Gilneas, humfras, Ivaria@Hyjal
## Version: 3.110-classic
## Version: 3.111-classic
## Notes: VuhDo Options
## SavedVariables: VUHDO_OPTIONS_SETTINGS
## SavedVariablesPerCharacter: VUHDO_GLOBAL_ICONS, VUHDO_GI_SCAN_IDX
......
......@@ -118,7 +118,7 @@ function VUHDO_spellcastSent(aUnit, aTargetName, aSpellId)
end
if VUHDO_CONFIG["RES_IS_SHOW_TEXT"] then
local tChannel = (UnitInBattleground("player") or HasLFGRestrictions()) and "INSTANCE_CHAT"
local tChannel = (UnitInBattleground("player") or VUHDO_hasLFGRestrictions()) and "INSTANCE_CHAT"
or IsInRaid() and "RAID" or IsInGroup() and "PARTY" or nil;
if tChannel then
......
......@@ -1260,3 +1260,11 @@ function VUHDO_hasIncomingSummon(...)
end
end
function VUHDO_hasLFGRestriction()
return false;
end
Version 3.111-classic
Known issues:
-- BfA stat squish cleanup still a work in progress
-- AOE Advice spell equations need complete overhaul
-- Some text providers need changes to better display small numbers
-- Debuff tooltips are currently bugged when using ElvUI
-- Deselect 'VuhDo Options > Panels > Tooltips > Tooltips > Debuffs'
-- In 8.2.0 Blizzard removed the ability to play sounds by file path
-- If you have LibSharedMedia installed make sure it is up to date
-- You may need to reselect your sound options in VuhDo for debuffs
Bugfixes:
-- Fixed usage of deprecated Blizzard API HasLFGRestriction
Improvements:
--------------------------------------------------------------
Version 3.111
Known issues:
-- BfA stat squish cleanup still a work in progress
-- AOE Advice spell equations need complete overhaul
-- Some text providers need changes to better display small numbers
-- Debuff tooltips are currently bugged when using ElvUI
-- Deselect 'VuhDo Options > Panels > Tooltips > Tooltips > Debuffs'
-- In 8.2.0 Blizzard removed the ability to play sounds by file path
-- If you have LibSharedMedia installed make sure it is up to date
-- You may need to reselect your sound options in VuhDo for debuffs
Bugfixes:
Improvements:
--------------------------------------------------------------
Version 3.110-classic
......@@ -43,6 +86,7 @@ Bugfixes:
Improvements:
-- Added Paladin 'Glimmer of Light' as default HoT icon option
-- Added default custom debuffs for Ny'alotha raid encounters
-- Bump TOC interface for 8.3.0
--------------------------------------------------------------
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment