mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 08:51:24 +00:00
- Exhumed: Repair missing negation affecting death sequence.
* Pitch negation strike's back!
This commit is contained in:
parent
81caf74721
commit
7f79ee9801
1 changed files with 1 additions and 1 deletions
|
@ -2623,7 +2623,7 @@ sectdone:
|
|||
{
|
||||
PlayerList[nPlayer].pActor->spr.Angles.Pitch -= maphoriz(dVertPan[nPlayer]);
|
||||
|
||||
if (PlayerList[nPlayer].pActor->spr.Angles.Pitch.Degrees() <= 38)
|
||||
if (PlayerList[nPlayer].pActor->spr.Angles.Pitch.Degrees() <= -38)
|
||||
{
|
||||
PlayerList[nPlayer].pActor->spr.Angles.Pitch = DAngle::fromDeg(-37.72);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue