mirror of
https://github.com/brues-code/pfUI.git
synced 2026-09-22 23:56:57 +00:00
23 lines
579 B
Lua
23 lines
579 B
Lua
if GetBuildInfo() ~= "2.4.3" then return end
|
|
|
|
message("TBC compat module loaded. Good Luck!")
|
|
|
|
-- load pfUI environment
|
|
setfenv(1, pfUI:GetEnvironment())
|
|
|
|
-- the "MiniMapTrackingFrame" is called "MiniMapTracking"
|
|
pfUI.api.MiniMapTrackingFrame = _G.MiniMapTracking
|
|
pfUI.api.UIOptionsFrame = _G.InterfaceOptionsFrame
|
|
|
|
-- gfind got replaced by gmatch
|
|
pfUI.api.gfind = string.gmatch
|
|
|
|
-- blacklist pfUI functions
|
|
pfUI.api.hooksecurefunc = nil
|
|
pfUI.api.select = nil
|
|
|
|
-- tbc removed the offset of -1
|
|
function pfUI.api.GetPlayerBuff(id, btype)
|
|
return _G.GetPlayerBuff(id+1, btype)
|
|
end
|