mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 18:39:00 +00:00
Fix peds running to see dead peds in water
This commit is contained in:
parent
759f91ce91
commit
904746054c
1 changed files with 16 additions and 11 deletions
|
@ -848,14 +848,18 @@ CPed::ScanForThreats(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
CPed *deadPed = nil;
|
CPed *deadPed;
|
||||||
if (fearFlags & PED_FLAG_DEADPEDS && CharCreatedBy != MISSION_CHAR
|
if (fearFlags & PED_FLAG_DEADPEDS && CharCreatedBy != MISSION_CHAR
|
||||||
&& (deadPed = CheckForDeadPeds()) != nil && (deadPed->GetPosition() - ourPos).MagnitudeSqr() < sq(20.0f)) {
|
&& (deadPed = CheckForDeadPeds()) != nil && (deadPed->GetPosition() - ourPos).MagnitudeSqr() < sq(20.0f)
|
||||||
|
#ifdef FIX_BUGS
|
||||||
|
&& !deadPed->bIsInWater
|
||||||
|
#endif
|
||||||
|
) {
|
||||||
m_pEventEntity = deadPed;
|
m_pEventEntity = deadPed;
|
||||||
m_pEventEntity->RegisterReference((CEntity **) &m_pEventEntity);
|
m_pEventEntity->RegisterReference((CEntity **) &m_pEventEntity);
|
||||||
return PED_FLAG_DEADPEDS;
|
return PED_FLAG_DEADPEDS;
|
||||||
} else {
|
} else {
|
||||||
uint32 flagsOfSomePed = 0;
|
uint32 flagsOfNearPed = 0;
|
||||||
|
|
||||||
CPed *pedToFearFrom = nil;
|
CPed *pedToFearFrom = nil;
|
||||||
bool weSawOurEnemy = false;
|
bool weSawOurEnemy = false;
|
||||||
|
@ -868,10 +872,11 @@ CPed::ScanForThreats(void)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
// BUG: Explained at the same occurence of this bug above. Fixed at the bottom of the function.
|
// BUG: Putting this here will result in returning the flags of farthest ped to us, since m_nearPeds is sorted by distance.
|
||||||
flagsOfSomePed = CPedType::GetFlag(m_nearPeds[i]->m_nPedType);
|
// Fixed at the bottom of the function.
|
||||||
|
flagsOfNearPed = CPedType::GetFlag(m_nearPeds[i]->m_nPedType);
|
||||||
|
|
||||||
if (flagsOfSomePed & fearFlags) {
|
if (flagsOfNearPed & fearFlags) {
|
||||||
if (m_nearPeds[i]->m_fHealth > 0.0f) {
|
if (m_nearPeds[i]->m_fHealth > 0.0f) {
|
||||||
if (OurPedCanSeeThisOne(m_nearPeds[i], !!bIgnoreThreatsBehindObjects)) {
|
if (OurPedCanSeeThisOne(m_nearPeds[i], !!bIgnoreThreatsBehindObjects)) {
|
||||||
if (m_nearPeds[i]->m_nPedState == PED_ATTACK) {
|
if (m_nearPeds[i]->m_nPedState == PED_ATTACK) {
|
||||||
|
@ -939,8 +944,8 @@ CPed::ScanForThreats(void)
|
||||||
if (driver) {
|
if (driver) {
|
||||||
|
|
||||||
// BUG: Same bug as above. Fixed at the bottom of function.
|
// BUG: Same bug as above. Fixed at the bottom of function.
|
||||||
flagsOfSomePed = CPedType::GetFlag(driver->m_nPedType);
|
flagsOfNearPed = CPedType::GetFlag(driver->m_nPedType);
|
||||||
if (CPedType::GetFlag(driver->m_nPedType) & fearFlags) {
|
if (flagsOfNearPed & fearFlags) {
|
||||||
|
|
||||||
if (driver->m_fHealth > 0.0f && OurPedCanSeeThisOne(nearVeh->pDriver)) {
|
if (driver->m_fHealth > 0.0f && OurPedCanSeeThisOne(nearVeh->pDriver)) {
|
||||||
// FIX: Taken from VC
|
// FIX: Taken from VC
|
||||||
|
@ -963,12 +968,12 @@ CPed::ScanForThreats(void)
|
||||||
|
|
||||||
#ifdef FIX_BUGS
|
#ifdef FIX_BUGS
|
||||||
if (pedToFearFrom)
|
if (pedToFearFrom)
|
||||||
flagsOfSomePed = CPedType::GetFlag(((CPed*)m_threatEntity)->m_nPedType);
|
flagsOfNearPed = CPedType::GetFlag(((CPed*)m_threatEntity)->m_nPedType);
|
||||||
else
|
else
|
||||||
flagsOfSomePed = 0;
|
flagsOfNearPed = 0;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
return flagsOfSomePed;
|
return flagsOfNearPed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue