mirror of
https://github.com/ZDoom/qzdoom.git
synced 2025-01-06 01:30:54 +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
|
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
|
{ // Blocked move
|
||||||
if (!bSkyExplode)
|
if (!bSkyExplode)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue