View Single Post
06/03/18, 03:36 PM   #4
sirinsidiator
 
sirinsidiator's Avatar
AddOn Author - Click to view addons
Join Date: Apr 2014
Posts: 1,566
You could also install the addon Zgoo and append the following code to its Startup.lua file.
Lua Code:
  1. ZO_PreHook(CENTER_SCREEN_ANNOUNCE, "CallExpiringCallback", function(self, announcementLine)
  2.     if not announcementLine then
  3.         d("announcementLine is missing")
  4.     else if not announcementLine:GetMessageParams() then
  5.         Zgoo:Main(nil, 1, announcementLine)
  6.     end
  7. end)
This should either print a message in chat if the announcementLine is nil, or open an inspector window for the announcementLine, which could contain a clue as to where the malformed object is coming from.
  Reply With Quote