Files
ShaguTweaks-ClassicAPI/mods/hide-gryphons.lua
T
2026-07-28 14:26:42 +02:00

15 lines
380 B
Lua

local _G = ShaguTweaks.GetGlobalEnv()
local T = ShaguTweaks.T
local module = ShaguTweaks:register({
title = T["Hide Gryphons"],
description = T["Hides the gryphons left and right of the action bar."],
expansions = { ["vanilla"] = true, ["tbc"] = true },
enabled = nil,
})
module.enable = function(self)
MainMenuBarLeftEndCap:Hide()
MainMenuBarRightEndCap:Hide()
end