mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
Blood: fixed bad order of random numbers.
This commit is contained in:
parent
88939a9c60
commit
e072380470
2 changed files with 4 additions and 4 deletions
|
@ -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))
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in a new issue