Skip to content

Commit

Permalink
Added persistent Accessory equips that will not be unequipped unless …
Browse files Browse the repository at this point in the history
…done manually
  • Loading branch information
Jens N committed May 1, 2022
1 parent 45aa181 commit 0178284
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 0178284

Please sign in to comment.