mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
- Fixed: Missiles that exploded on a wall because they exhausted their bounce count did not leave decals.
SVN r3445 (trunk)
This commit is contained in:
parent
73c55b52f9
commit
e6a0fbe4db
1 changed files with 1 additions and 1 deletions
|
@ -2779,7 +2779,7 @@ bool FSlide::BounceWall (AActor *mo)
|
||||||
if (mo->bouncecount>0 && --mo->bouncecount==0)
|
if (mo->bouncecount>0 && --mo->bouncecount==0)
|
||||||
{
|
{
|
||||||
if (mo->flags & MF_MISSILE)
|
if (mo->flags & MF_MISSILE)
|
||||||
P_ExplodeMissile(mo, NULL, NULL);
|
P_ExplodeMissile(mo, line, NULL);
|
||||||
else
|
else
|
||||||
mo->Die(NULL, NULL);
|
mo->Die(NULL, NULL);
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue