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

◆ RemoveSecondarySymptom()

void SymptomManager::RemoveSecondarySymptom ( int symptom_id)
inlineprivate

Removes a single Symptom.

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

532 {
533 for (int i = 0; i < m_SymptomQueueSecondary.Count();i++)
534 {
535 if ( m_SymptomQueueSecondary.Get(i) && m_SymptomQueueSecondary.Get(i).GetType() == symptom_id )
536 {
537 m_SymptomQueueSecondary.Get(i).RequestDestroy();
538 return;
539 }
540 }
541 }
ref array< ref SymptomBase > m_SymptomQueueSecondary
Определения StateManager.c:54

Перекрестные ссылки m_SymptomQueueSecondary.

Используется в OnRPC() и OnTick().