mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 14:51:40 +00:00
Fixed wrong parameter type passed into TryMove here
This commit is contained in:
parent
f19f825ccb
commit
75e18cca3c
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue