mirror of
https://github.com/GTAmodding/re3.git
synced 2024-12-25 18:45:40 +00:00
fixed collision
This commit is contained in:
parent
2fb5187e51
commit
d3ddfd8e40
1 changed files with 1 additions and 1 deletions
|
@ -144,7 +144,7 @@ CCollision::LoadCollisionWhenINeedIt(bool forceChange)
|
||||||
if(veh && veh->IsTrain()){
|
if(veh && veh->IsTrain()){
|
||||||
if(((CTrain*)veh)->m_nDoorState != TRAIN_DOOR_OPEN)
|
if(((CTrain*)veh)->m_nDoorState != TRAIN_DOOR_OPEN)
|
||||||
return;
|
return;
|
||||||
}else if(playerCoors.z < 4.0f && !CCullZones::DoINeedToLoadCollision())
|
}else if(playerCoors.z < -4.0f && !CCullZones::DoINeedToLoadCollision())
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Figure out whose level's collisions we're most likely to be interested in
|
// Figure out whose level's collisions we're most likely to be interested in
|
||||||
|
|
Loading…
Reference in a new issue