mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 15:46:56 +00:00
9 lines
336 B
Lua
9 lines
336 B
Lua
pfUI:RegisterModule("pet", "vanilla", function ()
|
|
-- do not go further on disabled UFs
|
|
if C.unitframes.disable == "1" then return end
|
|
pfUI.uf.pet = pfUI.uf:CreateUnitFrame("Pet", nil, C.unitframes.pet)
|
|
pfUI.uf.pet:UpdateFrameSize()
|
|
pfUI.uf.pet:SetPoint("BOTTOM", UIParent , "BOTTOM", 0, 163)
|
|
UpdateMovable(pfUI.uf.pet)
|
|
end)
|