Thread: 1.6 update
View Single Post
02/19/15, 03:08 AM   #37
Harven
 
Harven's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 135
It's a new global variable. It isn't the AddOnManager which you can get by calling GetAddOnManager(), it's just the UI object.

Pre 1.6.3:
Lua Code:
  1. function ZO_MainMenuManager:Initialize(control)
  2.      local addOnManager = ZO_AddOnManager:New(true)

1.6.3:
Lua Code:
  1. function ZO_MainMenuManager:Initialize(control)
  2.      ADD_ON_MANAGER = ZO_AddOnManager:New(true)
  Reply With Quote