Skip to content

Commit

Permalink
Merge pull request #95 from ForsakenNGS/master
Browse files Browse the repository at this point in the history
Added persistent accessory outfits
  • Loading branch information
cdmichaelb authored May 3, 2022
2 parents 45aa181 + 0178284 commit 1112b4f
Show file tree
Hide file tree
Showing 3 changed files with 328 additions and 267 deletions.
6 changes: 6 additions & 0 deletions Outfitter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -2132,6 +2132,12 @@ function Outfitter:AddOutfitMenu(menu, outfit)
outfit.UnequipOthers = value or nil
self:OutfitSettingsChanged(outfit)
end)
menu:AddToggle(self.cPreventUnequip, function()
return outfit.PreventUnequip
end, function (menu, value)
outfit.PreventUnequip = value or nil
self:OutfitSettingsChanged(outfit)
end)
end
menu:AddToggle(self.cIgnoreComparisons, function ()
return outfit.IgnoreComparisons
Expand Down
Loading

0 comments on commit 1112b4f

Please sign in to comment.