View Single Post
08-25-16, 03:48 PM   #4
Fizzlemizz
I did that?
 
Fizzlemizz's Avatar
Premium Member
AddOn Author - Click to view addons
Join Date: Dec 2011
Posts: 1,906
After a quick look, it seems TaxiFrame is no longer registering the "TAXIMAP_OPENED" event which CFM uses for initialising the nodes. You could add this to the CFMs OnLoad script.

EDIT: On second thought, rather than registering the "TAXIMAP_OPENED" event (I don't know if this event may go away in future) and given TaxiFrame is now using OnShow you could change:
Code:
TaxiFrame:HookScript("OnEvent", function(self, event)
	if (event ~= "TAXIMAP_OPENED" or not self:IsShown()) then  return;  end
too:
Code:
TaxiFrame:HookScript("OnShow", function()
__________________
Fizzlemizz
Maintainer of Discord Unit Frames and Discord Art.
Author of FauxMazzle, FauxMazzleHUD and Move Pad Plus.

Last edited by Fizzlemizz : 08-26-16 at 01:51 AM.
  Reply With Quote