From 5ebe4cd46b90875d81922848a91dfb3adb494c60 Mon Sep 17 00:00:00 2001 From: Marisa Kirisame Date: Thu, 3 Oct 2019 22:02:20 +0200 Subject: [PATCH] Beta 5 TheRideNeverEnds Hotfix 6: - Somehow the Stinger has had randomized damage since the very beginning when it was supposed to deal 14. Guess I never EVER bothered to check that, this is a leftover from Doomreal's very early development. Back then, Doom Tournament also did randomized damage all over the place and it was bad. --- zscript/stinger.zsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zscript/stinger.zsc b/zscript/stinger.zsc index 9cacac8..409bbab 100644 --- a/zscript/stinger.zsc +++ b/zscript/stinger.zsc @@ -379,7 +379,7 @@ Class StingerProjectile : Actor { Obituary "$O_STINGER"; DamageType 'Stinger'; - DamageFunction Random[Stinger](15,25); + DamageFunction 14; Speed 40; Radius 2; Height 2;