Skip to content

Commit

Permalink
- Exhumed: Adjust angle change in 47a77fc to be 1:1 with the source.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjr4077au committed Nov 8, 2023
1 parent c6e5ade commit 6c70211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/games/exhumed/src/queen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -644,7 +644,7 @@ void AIQueenEgg::Tick(RunListEvent* ev)
}
[[fallthrough]];
case kHitWall:
pActor->spr.Angles.Yaw += (DAngle45 + DAngle90 + RandomAngle9()).Normalized360();
pActor->spr.Angles.Yaw = (pActor->spr.Angles.Yaw + DAngle45 + DAngle90 + RandomAngle9()).Normalized360();
pActor->VelFromAngle(-3);
pActor->vel.Z = (-RandomSize(5)) / 256.;
break;
Expand Down

0 comments on commit 6c70211

Please sign in to comment.