Petroix wrote:Nice, I had hope it would fix most problems and indeed ESC button works now all the time. But I don't know why, this 2.62 version removed fullscreen from cartographer map, I can't put it on fullscreen anymore. Did you change anything related to it? After /rl it shows I'm somewhere else on the map on different continent. If I disable Questie it works again, these two addons definetly have to be in conflict.
Does it tell you anything?
I f'ing HATE LUA! This line of code is present:
- Code: Select all
if (not IsAddOnLoaded("Cartographer")) or (not IsAddOnLoaded("MetaMap")) then
Cartographer is loaded so it should skip that entire map modification block but for some reason it's not. Then I remembered that Cartographer is a modular ACE addon so "Look N Feel" (which controls the Worldmap) is sort of outside the "Cartographer" addon. So now if it see's the offending module it returns to end.
- Code: Select all
if Cartographer:IsModule(Cartographer_LookNFeel) then return end
I also had to add Cartographer as an Optional Addon dependency just so I could access it's namespace. There is a way to do it without having to declare it as an optional addon but it would mean that Cartographer needed to load first before Questie. As an optional dependency, if the addon is present, Questie waits for it's functions to be declared before it begins running it's own checks avoiding a bunch of nil errors.
I also cleaned up the Map Mod code and removed some redundant lines that might have been conflicting with certain elements/functions... such as the PVP map.
Fix will be in the next release.