mirror of
https://github.com/GTAmodding/re3.git
synced 2025-07-13 12:34:08 +00:00
fixed key binding, head shots, freezes
This commit is contained in:
parent
0126bef9a1
commit
047fa20f28
6 changed files with 20 additions and 22 deletions
|
@ -1790,7 +1790,7 @@ CPhysical::ProcessCollision(void)
|
|||
|
||||
if(IsPed() && (distSq >= sq(0.2f) || ped->IsPlayer())){
|
||||
if(ped->IsPlayer())
|
||||
n = min(NUMSTEPS(0.2f), 2.0);
|
||||
n = max(NUMSTEPS(0.2f), 2.0);
|
||||
else
|
||||
n = NUMSTEPS(0.3f);
|
||||
step = savedTimeStep / n;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue