From a350275bdfa182a1c2e0fbae247bb435dae3a7ae Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 30 Nov 2016 19:03:46 +0100 Subject: [PATCH] - re-added two lost parentheses in A_FireGoldWandPL1. --- wadsrc/static/zscript/heretic/weaponwand.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/heretic/weaponwand.txt b/wadsrc/static/zscript/heretic/weaponwand.txt index bd1475adb..9516aa76c 100644 --- a/wadsrc/static/zscript/heretic/weaponwand.txt +++ b/wadsrc/static/zscript/heretic/weaponwand.txt @@ -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) {