mirror of
https://gitlab.com/GaryOderNichts/re3-wiiu.git
synced 2024-11-27 03:24:15 +01:00
Fix collision loading for mission entities
This commit is contained in:
parent
65219365db
commit
8e6e46a919
@ -186,7 +186,7 @@ CColStore::LoadCollision(const CVector2D &pos)
|
|||||||
}else{
|
}else{
|
||||||
for (int j = 0; j < MAX_CLEANUP; j++) {
|
for (int j = 0; j < MAX_CLEANUP; j++) {
|
||||||
CPhysical* pEntity = nil;
|
CPhysical* pEntity = nil;
|
||||||
cleanup_entity_struct* pCleanup = &CTheScripts::MissionCleanUp.m_sEntities[i];
|
cleanup_entity_struct* pCleanup = &CTheScripts::MissionCleanUp.m_sEntities[j];
|
||||||
if (pCleanup->type == CLEANUP_CAR) {
|
if (pCleanup->type == CLEANUP_CAR) {
|
||||||
pEntity = CPools::GetVehiclePool()->GetAt(pCleanup->id);
|
pEntity = CPools::GetVehiclePool()->GetAt(pCleanup->id);
|
||||||
if (!pEntity || pEntity->GetStatus() == STATUS_WRECKED)
|
if (!pEntity || pEntity->GetStatus() == STATUS_WRECKED)
|
||||||
|
Loading…
Reference in New Issue
Block a user