mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +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.;
|
||||
}
|
||||
A_Explode(64, 64, XF_NOSPLASH, damagetype: 'Fire');
|
||||
A_Explode(64, 64, XF_NOSPLASH|XF_HURTSOURCE, damagetype: 'Fire');
|
||||
}
|
||||
|
||||
//==========================================================================
|
||||
|
|
Loading…
Reference in a new issue