Blood: fixed bad order of random numbers.

This commit is contained in:
Christoph Oelckers 2023-09-29 20:10:55 +02:00
parent 88939a9c60
commit e072380470
2 changed files with 4 additions and 4 deletions

View file

@ -66,9 +66,9 @@ void SeqAttackCallback(int, DBloodActor* actor)
for (int i = 0; i < 2; i++)
{
double r1 = Random3F(500, 4);
double r3 = Random3F(500, 4);
double r2 = Random3F(1000, 4);
double r3 = Random3F(1000, 8);
double r1 = Random3F(1000, 8);
actFireVector(actor, 0, 0, vect + DVector3(r1, r2, r3), kVectorShell);
}
if (Chance(0x8000))

View file

@ -104,9 +104,9 @@ void ShotSeqCallback(int, DBloodActor* actor)
vect.Z += Random3F((5 - gGameOptions.nDifficulty) * 500, 14);
for (int i = 0; i < 8; i++)
{
double r1 = Random3F(500 , 14);
double r3 = Random3F(500 , 14);
double r2 = Random3F(1000, 14);
double r3 = Random3F(1000, 14);
double r1 = Random3F(1000, 14);
actFireVector(actor, 0, 0, vect + DVector3(r1, r2, r3), kVectorShell);
}
if (Chance(0x8000))