ZO_PreHook(WORLD_MAP_MANAGER, "TryShowSpectacleMapHeader", function() --Votan's Minimap uses a dedicated mapmode (MAP_MODE_VOTANS_MINIMAP) to show the minimap is used. If we ask for that being active we can detect it's the minimap addon showing, and not the normal worldmap. --Other addons like MapPins and Fyrakin's Minimap hopefully got such dedicated MapModes themselves !!! if WORLD_MAP_MANAGER:IsInMode(MAP_MODE_VOTANS_MINIMAP) then WORLD_MAP_MANAGER:ClearMapHeader() return true --supress calling original code end return false --call original code end)