From c60e0263347bd1b16ec76a1baeda9ed94f117caa Mon Sep 17 00:00:00 2001 From: Player701 Date: Tue, 22 Sep 2020 14:03:37 +0300 Subject: [PATCH] Fixed decals not appearing when firing at walls point-blank (#1186) --- src/playsim/p_mobj.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playsim/p_mobj.cpp b/src/playsim/p_mobj.cpp index 6cc6f670e..7e8d54713 100644 --- a/src/playsim/p_mobj.cpp +++ b/src/playsim/p_mobj.cpp @@ -6435,7 +6435,7 @@ bool P_CheckMissileSpawn (AActor* th, double maxdist) } else { - P_ExplodeMissile (th, NULL, th->BlockingMobj); + P_ExplodeMissile (th, th->BlockingLine, th->BlockingMobj); } return false; }