From 92421814026af4081001f9b25b5665b81a2aea65 Mon Sep 17 00:00:00 2001 From: nashmuhandes Date: Fri, 28 May 2021 12:03:27 +0800 Subject: [PATCH] Fixed wrong parameter type passed into TryMove here --- wadsrc/static/zscript/actors/shared/fastprojectile.zs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wadsrc/static/zscript/actors/shared/fastprojectile.zs b/wadsrc/static/zscript/actors/shared/fastprojectile.zs index befc4252dd7..88df40a32af 100644 --- a/wadsrc/static/zscript/actors/shared/fastprojectile.zs +++ b/wadsrc/static/zscript/actors/shared/fastprojectile.zs @@ -102,7 +102,7 @@ class FastProjectile : Actor tm.ClearLastRipped(); // [RH] Do rip damage each step, like Hexen } - if (!TryMove (Pos.XY + frac.XY, true, NULL, tm)) + if (!TryMove (Pos.XY + frac.XY, true, false, tm)) { // Blocked move if (!bSkyExplode) {