View Single Post
09-12-19, 03:45 AM   #2
Xrystal
nUI Maintainer
 
Xrystal's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Feb 2006
Posts: 5,892
The latter error is due to a very recent change by Blizzard. I have as yet not identified a workaround for the one line I had on nUI. I just commented out the line for now as it doesn't stop the addon working. But others I think have worked solutions into their addons.

Mapping system changes were affected by the move to Classic. The WorldMapDetailFrame was likely removed or renamed. You may have to identify the new name or find another frame to use instead. The Classic API can be found here : https://github.com/Gethe/wow-ui-source/tree/classic

working around combat lockdown is hard but I usually use the two events
PLAYER_REGEN_DISABLED
PLAYER_REGEN_ENABLED
To disable/hide buttons from being clicked etc

And the check InCombatLockdown() function to stop calls to functions that would cause errors.

If the action being requested needs to be done at that time however you may have to work in a combatQueue and record requests asked during combat and complete them in order after combat.
__________________
  Reply With Quote