I'm gonna get this right one day

This commit is contained in:
2022-11-12 08:55:37 -06:00
parent e84b834139
commit 6c3f3e93e6

View File

@ -12,17 +12,19 @@ if not IsArtifactRelicItem then
return false return false
end end
end end
if C_Container.GetBagName then if C_Container then
GetBagName = C_Container.GetBagName if C_Container.GetBagName then
end GetBagName = C_Container.GetBagName
if C_Container.GetContainerNumSlots then end
GetContainerNumSlots = C_Container.GetContainerNumSlots if C_Container.GetContainerNumSlots then
end GetContainerNumSlots = C_Container.GetContainerNumSlots
if C_Container.GetContainerItemInfo then end
GetContainerItemInfo = C_Container.GetContainerItemInfo if C_Container.GetContainerItemInfo then
end GetContainerItemInfo = C_Container.GetContainerItemInfo
if C_Container.GetContainerItemLink then end
GetContainerItemLink = C_Container.GetContainerItemLink if C_Container.GetContainerItemLink then
GetContainerItemLink = C_Container.GetContainerItemLink
end
end end
local WowVer = select(4, GetBuildInfo()) local WowVer = select(4, GetBuildInfo())