Files
ShaguTweaks-ClassicAPI/mods/minimap-tracking.lua
T
2026-08-12 16:00:33 +02:00

18 lines
496 B
Lua

local _G = ShaguTweaks.GetGlobalEnv()
local T = ShaguTweaks.T
local module = ShaguTweaks:register({
title = T["Hide Tracking Icon"],
description = T["Hides the tracking icon from the minimap."],
expansions = { ["vanilla"] = true },
category = T["World & MiniMap"],
enabled = true,
order = 74,
})
module.enable = function(self)
-- Désactive l'affichage automatique du bouton de suivi
MiniMapTrackingFrame.Show = function() end
MiniMapTrackingFrame:Hide()
end