chainmail_coif.c 402 B

1234567891011121314
  1. class Chainmail_Coif extends HeadGear_Base
  2. {
  3. override protected set<int> GetAttachmentExclusionInitSlotValue(int slotId)
  4. {
  5. set<int> ret = super.GetAttachmentExclusionInitSlotValue(slotId);
  6. if (slotId == InventorySlots.HEADGEAR)
  7. {
  8. ret.Insert(EAttExclusions.LEGACY_MASK_HEADGEAR); //same as 'noMask' used to be
  9. ret.Insert(EAttExclusions.SHAVING_HEADGEAR_ATT_0);
  10. }
  11. return ret;
  12. }
  13. };