Saner loop

This commit is contained in:
erorcun 2021-06-30 04:12:59 +03:00
parent 9f0daee186
commit cac1c5bd42

View File

@ -2080,13 +2080,13 @@ CPlayerPed::UpdateMeleeAttackers(void)
void
CPlayerPed::RemovePedFromMeleeList(CPed *ped)
{
int i = 0;
while (m_pMeleeList[i] != ped) {
if (++i >= ARRAY_SIZE(m_pMeleeList))
for (uint16 i = 0; i < ARRAY_SIZE(m_pMeleeList); i++) {
if (m_pMeleeList[i] == ped) {
m_pMeleeList[i] = nil;
ped->m_attackTimer = 0;
return;
}
}
m_pMeleeList[i] = nil;
ped->m_attackTimer = 0;
}
void