View Single Post
08-13-18, 07:36 AM   #2
p3lim
A Pyroguard Emberseer
 
p3lim's Avatar
AddOn Author - Click to view addons
Join Date: Feb 2007
Posts: 1,710
Try this:
Lua Code:
  1. for provider in next, WorldMapFrame.dataProviders do
  2.     if(provider.ShouldShowTaxiNode) then
  3.         WorldMapFrame:RemoveDataProvider(provider)
  4.         break
  5.     end
  6. end

It's not the best solution, but it's pretty much the only way we can get the correct provider until Blizzard improves the data provider system.
  Reply With Quote