- fixed typo with RNG name.

This commit is contained in:
Christoph Oelckers 2018-11-07 19:20:42 +01:00
parent 9661c3b53c
commit bfffe6df3e
1 changed files with 1 additions and 1 deletions

View File

@ -323,7 +323,7 @@ extend class Actor
A_PlaySound(AttackSound, CHAN_WEAPON);
A_FaceTarget();
double slope = AimLineAttack(angle, MISSILERANGE);
double ang = angle + Random2[SPosAttack]() * (22.5/256);
double ang = angle + Random2[CPosAttack]() * (22.5/256);
int damage = Random[CPosAttack](1, 5) * 3;
LineAttack(ang, MISSILERANGE, slope, damage, "Hitscan", "Bulletpuff");
}