mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-23 04:22:34 +00:00
- re-added two lost parentheses in A_FireGoldWandPL1.
This commit is contained in:
parent
83d7f63364
commit
a350275bdf
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ class GoldWand : HereticWeapon
|
|||
return;
|
||||
}
|
||||
double pitch = BulletSlope();
|
||||
int damage = 7 + random[FireGoldWand]() & 7;
|
||||
int damage = 7 + (random[FireGoldWand]() & 7);
|
||||
double ang = angle;
|
||||
if (player.refire)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue