mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +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->flags & MF_MISSILE)
|
||||
P_ExplodeMissile(mo, NULL, NULL);
|
||||
P_ExplodeMissile(mo, line, NULL);
|
||||
else
|
||||
mo->Die(NULL, NULL);
|
||||
return true;
|
||||
|
|
Loading…
Reference in a new issue