mirror of
https://github.com/halpz/re3.git
synced 2025-07-03 07:10:43 +00:00
Fix 3 bugs
* Footsteps doesn't play while sprinting * Player doesn't kick ped in ground at first time * Looking around with numpad is problematic Signed-off-by: eray orçunus <erayorcunus@gmail.com>
This commit is contained in:
@ -249,7 +249,7 @@ CheckForPedsOnGroundToAttack(CPlayerPed *player, CPed **pedOnGround)
|
||||
foundDead = 1;
|
||||
if (!deadPed)
|
||||
deadPed = (CPed*)currentPed;
|
||||
} else if (currentPed->IsPedHeadAbovePos(-0.6f)) {
|
||||
} else if (!currentPed->IsPedHeadAbovePos(-0.6f)) {
|
||||
foundOnTheFloor = 1;
|
||||
if (!pedOnTheFloor)
|
||||
pedOnTheFloor = (CPed*)currentPed;
|
||||
|
Reference in New Issue
Block a user