From 99f1d6b82e7d437cd79dedbaf9ec39a29e8607c7 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Thu, 15 Nov 2018 18:49:37 +0100 Subject: [PATCH] - fixed: A_DropFire accidentally cleared the XF_HURTSOURCE flag by setting only XF_NOSPLASH. --- wadsrc/static/zscript/strife/strifefunctions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/strife/strifefunctions.txt b/wadsrc/static/zscript/strife/strifefunctions.txt index 5e0312a95..7e83a6512 100644 --- a/wadsrc/static/zscript/strife/strifefunctions.txt +++ b/wadsrc/static/zscript/strife/strifefunctions.txt @@ -137,7 +137,7 @@ extend class Actor { drop.Vel.Z = -1.; } - A_Explode(64, 64, XF_NOSPLASH, damagetype: 'Fire'); + A_Explode(64, 64, XF_NOSPLASH|XF_HURTSOURCE, damagetype: 'Fire'); } //==========================================================================