-- Hide Stealth Text
-- Simple addon to hide stealth text near the player's reticle
local ADDON_NAME = "HideStealthText"

local function OnLoad(event, addonName)
    if addonName == addonName then
        ZO_ReticleContainerStealthIconStealthText:SetHidden(true)
    end
end

EVENT_MANAGER:RegisterForEvent(ADDON_NAME, EVENT_ADD_ON_LOADED, OnLoad)