WoW Patch 8.2 General Fixes
- Cleanup on .pkgmeta file. - Removed 3DModelsPatch plugin. - ToC files Updated. - Minor 8.2 API changes bug fixes.
This commit is contained in:
@@ -376,11 +376,8 @@
|
||||
|
||||
local pet_blacklist = {}
|
||||
local pet_tooltip_frame = _G.DetailsPetOwnerFinder
|
||||
local pet_text_object = _G ["DetailsPetOwnerFinderTextLeft2"]
|
||||
local follower_text_object = _G ["DetailsPetOwnerFinderTextLeft3"]
|
||||
|
||||
local line1 = _G ["DetailsPetOwnerFinderTextLeft2"]
|
||||
local line2 = _G ["DetailsPetOwnerFinderTextLeft3"]
|
||||
local pet_text_object = _G ["DetailsPetOwnerFinderTextLeft2"] --not in use
|
||||
local follower_text_object = _G ["DetailsPetOwnerFinderTextLeft3"] --not in use
|
||||
|
||||
local find_pet_found_owner = function (ownerName, serial, nome, flag, self)
|
||||
local ownerGuid = _UnitGUID (ownerName)
|
||||
@@ -406,7 +403,8 @@
|
||||
pet_tooltip_frame:SetOwner (WorldFrame, "ANCHOR_NONE")
|
||||
pet_tooltip_frame:SetHyperlink ("unit:" .. serial or "")
|
||||
|
||||
local text1 = line1:GetText()
|
||||
local line1 = _G ["DetailsPetOwnerFinderTextLeft2"]
|
||||
local text1 = line1 and line1:GetText()
|
||||
if (text1 and text1 ~= "") then
|
||||
for playerName, _ in _pairs (_detalhes.tabela_vigente.raid_roster) do
|
||||
local pName = playerName
|
||||
@@ -417,7 +415,8 @@
|
||||
end
|
||||
end
|
||||
|
||||
local text2 = line2:GetText()
|
||||
local line2 = _G ["DetailsPetOwnerFinderTextLeft3"]
|
||||
local text2 = line2 and line2:GetText()
|
||||
if (text2 and text2 ~= "") then
|
||||
for playerName, _ in _pairs (_detalhes.tabela_vigente.raid_roster) do
|
||||
local pName = playerName
|
||||
|
||||
Reference in New Issue
Block a user