Skip to content

Commit

Permalink
Framework update
Browse files Browse the repository at this point in the history
  • Loading branch information
Tercioo committed May 10, 2020
1 parent b3fafad commit 8967c88
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
11 changes: 8 additions & 3 deletions Libs/DF/fw.lua
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

local dversion = 179
local dversion = 180

local major, minor = "DetailsFramework-1.0", dversion
local DF, oldminor = LibStub:NewLibrary (major, minor)
Expand Down Expand Up @@ -3799,7 +3799,11 @@ do
return object, true
end
end
end
end

local get_all_inuse = function(self)
return self.inUse;
end

local release = function(self, object)
for i = #self.inUse, 1, -1 do
Expand Down Expand Up @@ -3838,7 +3842,8 @@ do
end

local poolMixin = {
Get = get,
Get = get,
GetAllInUse = get_all_inuse,
Acquire = get,
Release = release,
Reset = reset,
Expand Down
1 change: 1 addition & 0 deletions Libs/DF/spells.lua
Original file line number Diff line number Diff line change
Expand Up @@ -872,6 +872,7 @@ DF.PotionIDs = {

DF.RuneIDs = {
[270058] = true, --Battle-Scarred Augment Rune
[317065] = true, --Lightning-Forged Augment Rune
}

-- /dump UnitAura ("player", 1)
Expand Down

0 comments on commit 8967c88

Please sign in to comment.