View Single Post
01-18-18, 11:48 AM   #4
Anfithil
A Defias Bandit
Join Date: Jan 2011
Posts: 2
For me it worked with changing one line of code. Look for these links (around line 200)
Lua Code:
  1. elseif addon == "!Aurora_RealUI" then
  2.             local F, C = _G.Aurora[1], _G.Aurora[2]
  3.             if not (F and C) then
and replace it with
Lua Code:
  1. elseif addon == "!Aurora_RealUI" then
  2.            -- local F, C = _G.Aurora[1], _G.Aurora[2]
  3.             if not (F and C) then
After that I had no more problems
  Reply With Quote