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

◆ GetMaterialAndQuantityMapEx()

void GetMaterialAndQuantityMapEx ( ItemBase item,
out map< string, int > output_map,
EHarvestType type )

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

171 {
172 if ( IsTree() && item && type == EHarvestType.BARK && GetBarkType() != "" )
173 {
174 output_map.Insert(GetBarkType(),1);
175 }
176 else
177 {
178 output_map.Insert(GetPrimaryOutput(),1);
179 }
180 }
string GetBarkType()
Определения WoodBase.c:91
string GetPrimaryOutput()
Определения WoodBase.c:81
EHarvestType
Определения WoodBase.c:2

Перекрестные ссылки GetBarkType() и GetPrimaryOutput().