mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-23 00:11:03 +00:00
- Duke: Ensure hard landing check is done after pitch keys.
* Oversight from e9a5f745fc
.
This commit is contained in:
parent
681207de98
commit
9c04f66ed1
2 changed files with 4 additions and 4 deletions
|
@ -2990,8 +2990,6 @@ HORIZONLY:
|
|||
playerAimDown(snum, actions);
|
||||
}
|
||||
|
||||
p->checkhardlanding();
|
||||
|
||||
if (SyncInput())
|
||||
{
|
||||
p->GetActor()->spr.Angles.Pitch += GetPlayerHorizon(snum);
|
||||
|
@ -2999,6 +2997,8 @@ HORIZONLY:
|
|||
|
||||
p->Angles.doPitchKeys(&p->sync);
|
||||
|
||||
p->checkhardlanding();
|
||||
|
||||
//Shooting code/changes
|
||||
|
||||
if (p->show_empty_weapon > 0)
|
||||
|
|
|
@ -3719,8 +3719,6 @@ HORIZONLY:
|
|||
p->GetActor()->spr.Angles.Pitch += maphoriz(d);
|
||||
}
|
||||
|
||||
p->checkhardlanding();
|
||||
|
||||
if (SyncInput())
|
||||
{
|
||||
p->GetActor()->spr.Angles.Pitch += GetPlayerHorizon(snum);
|
||||
|
@ -3728,6 +3726,8 @@ HORIZONLY:
|
|||
|
||||
p->Angles.doPitchKeys(&p->sync);
|
||||
|
||||
p->checkhardlanding();
|
||||
|
||||
//Shooting code/changes
|
||||
|
||||
if (p->show_empty_weapon > 0)
|
||||
|
|
Loading…
Reference in a new issue