Skip to content

Commit

Permalink
Fix error on 10.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
parnic committed Nov 11, 2022
1 parent a6d396e commit e84b834
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Breakables.lua
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,16 @@ if not IsArtifactRelicItem then
return false
end
end
if C_Container then
if C_Container.GetBagName then
GetBagName = C_Container.GetBagName
end
if C_Container.GetContainerNumSlots then
GetContainerNumSlots = C_Container.GetContainerNumSlots
end
if C_Container.GetContainerItemInfo then
GetContainerItemInfo = C_Container.GetContainerItemInfo
end
if C_Container.GetContainerItemLink then
GetContainerItemLink = C_Container.GetContainerItemLink
end

Expand Down
4 changes: 4 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
v1.9.3:

- Fix error on 10.0.0

v1.9.2:

- Dragonflight/10.0.2 compatibility
Expand Down

0 comments on commit e84b834

Please sign in to comment.