Skip to content

Commit

Permalink
Fixed wrong parameter type passed into TryMove here
Browse files Browse the repository at this point in the history
  • Loading branch information
nashmuhandes authored and coelckers committed Jul 25, 2021
1 parent e514a75 commit 9242181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wadsrc/static/zscript/actors/shared/fastprojectile.zs
Expand Up @@ -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)
{
Expand Down

0 comments on commit 9242181

Please sign in to comment.