DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ GetAttachmentExclusionInitSlotValue()

set< int > Bandana_ColorBase::GetAttachmentExclusionInitSlotValue ( int slotId)
inlineprotected

См. определение в файле consumables.c строка 39

40 {
41 set<int> ret = super.GetAttachmentExclusionInitSlotValue(slotId);
42 switch (slotId)
43 {
44 case InventorySlots.HEADGEAR:
45 return ret;//no discernable conflict here
46 break;
47
48 default:
49 ret.Insert(EAttExclusions.EXCLUSION_MASK_3);
50
51 ret.Insert(EAttExclusions.SHAVING_MASK_ATT_0);
52 break;
53 }
54 return ret;
55 }