mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- be a bit more thorough and also call Effect() on vertically moving missiles with zero damage.
This commit is contained in:
parent
865863ab6f
commit
3418710a38
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ void AFastProjectile::Tick ()
|
||||||
P_ExplodeMissile (this, NULL, NULL);
|
P_ExplodeMissile (this, NULL, NULL);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (changexy && ripcount <= 0)
|
if (!frac.isZero() && ripcount <= 0)
|
||||||
{
|
{
|
||||||
ripcount = count >> 3;
|
ripcount = count >> 3;
|
||||||
Effect();
|
Effect();
|
||||||
|
|
Loading…
Reference in a new issue