mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-24 13:01:42 +00:00
Blood: fixed bad random shifts for directional vectors.
This commit is contained in:
parent
292c20842d
commit
c9a610fea6
1 changed files with 3 additions and 3 deletions
|
@ -60,9 +60,9 @@ AISTATE tinycaleb139698 = { kAiStateOther, 8, -1, 120, NULL, aiMoveTurn, NULL, &
|
|||
void SeqAttackCallback(int, DBloodActor* actor)
|
||||
{
|
||||
DVector3 vect(actor->spr.Angles.Yaw.ToVector(), actor->dudeSlope);
|
||||
vect.X += Random2F(1500, 4);
|
||||
vect.Y += Random2F(1500, 4);
|
||||
vect.Z += Random2F(1500, 8);
|
||||
vect.X += Random2F(1500, 14);
|
||||
vect.Y += Random2F(1500, 14);
|
||||
vect.Z += Random2F(1500, 14);
|
||||
|
||||
for (int i = 0; i < 2; i++)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue