mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- fixed: A_DropFire accidentally cleared the XF_HURTSOURCE flag by setting only XF_NOSPLASH.
This commit is contained in:
parent
47138b748a
commit
99f1d6b82e
1 changed files with 1 additions and 1 deletions
|
@ -137,7 +137,7 @@ extend class Actor
|
||||||
{
|
{
|
||||||
drop.Vel.Z = -1.;
|
drop.Vel.Z = -1.;
|
||||||
}
|
}
|
||||||
A_Explode(64, 64, XF_NOSPLASH, damagetype: 'Fire');
|
A_Explode(64, 64, XF_NOSPLASH|XF_HURTSOURCE, damagetype: 'Fire');
|
||||||
}
|
}
|
||||||
|
|
||||||
//==========================================================================
|
//==========================================================================
|
||||||
|
|
Loading…
Reference in a new issue