mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-03 14:30:45 +00:00
Exhumed: fix handling of angles for the queen's eggs when colliding with a wall.
This commit is contained in:
parent
d753c92cfa
commit
98f2257aad
1 changed files with 1 additions and 1 deletions
|
@ -644,7 +644,7 @@ void AIQueenEgg::Tick(RunListEvent* ev)
|
|||
}
|
||||
[[fallthrough]];
|
||||
case kHitWall:
|
||||
pActor->spr.Angles.Yaw = (DAngle45 + DAngle90 + RandomAngle9()).Normalized360();
|
||||
pActor->spr.Angles.Yaw += (DAngle45 + DAngle90 + RandomAngle9()).Normalized360();
|
||||
pActor->VelFromAngle(-3);
|
||||
pActor->vel.Z = (-RandomSize(5)) / 256.;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue