mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-23 20:42:24 +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);
|
||||
return;
|
||||
}
|
||||
if (changexy && ripcount <= 0)
|
||||
if (!frac.isZero() && ripcount <= 0)
|
||||
{
|
||||
ripcount = count >> 3;
|
||||
Effect();
|
||||
|
|
Loading…
Reference in a new issue