- re-added two lost parentheses in A_FireGoldWandPL1.

This commit is contained in:
Christoph Oelckers 2016-11-30 19:03:46 +01:00
parent 83d7f63364
commit a350275bdf
1 changed files with 1 additions and 1 deletions

View File

@ -59,7 +59,7 @@ class GoldWand : HereticWeapon
return; return;
} }
double pitch = BulletSlope(); double pitch = BulletSlope();
int damage = 7 + random[FireGoldWand]() & 7; int damage = 7 + (random[FireGoldWand]() & 7);
double ang = angle; double ang = angle;
if (player.refire) if (player.refire)
{ {