View Single Post
05-30-23, 05:11 AM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,953
Are there any other addons you have that might ?

Depending on how many addons you have active you could either load them one at a time to see if the error triggers to identify which addons might be the cause or you could do it in blocks until you narrow it down to a few and then repeat using the one at a time pattern.

Then its the case of testing that potential faulty addon to see if it repeatedly makes the addon happen when it is the only addon loaded, but not with no addons loaded. You can then pass the information on to the developer of the addon for them to look into.

However, unless an addon has literally recreated a PlayerName object it shouldn't have broken Blizzards one.
Lua Code:
  1. function PlayerFrame_UpdatePlayerNameTextAnchor()
  2.     if PlayerFrame.unit == "vehicle" then
  3.         PlayerName:SetPoint("TOPLEFT", 96, -27);
  4.     else
  5.         PlayerName:SetPoint("TOPLEFT", 88, -27);  <<<<< Error Reported on this line on Retail 10.1
  6.     end
  7. end
__________________


Characters:
Gwynedda - 70 - Demon Warlock
Galaviel - 65 - Resto Druid
Gamaliel - 61 - Disc Priest
Gwynytha - 60 - Survival Hunter
Lienae - 60 - Resto Shaman
Plus several others below level 60

Info Panel IDs : http://www.wowinterface.com/forums/s...818#post136818

Last edited by Xrystal : 05-30-23 at 05:15 AM.
  Reply With Quote