mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 06:41:59 +00:00
- Blood: fixed flare gun no longer being able to set trees on fire.
Somehow a bad damage type got in here...
This commit is contained in:
parent
de816fa90a
commit
1732d206bd
1 changed files with 1 additions and 1 deletions
|
@ -5700,7 +5700,7 @@ static void actCheckProximity()
|
||||||
if (pXSprite->burnTime > 0)
|
if (pXSprite->burnTime > 0)
|
||||||
{
|
{
|
||||||
pXSprite->burnTime = ClipLow(pXSprite->burnTime - 4, 0);
|
pXSprite->burnTime = ClipLow(pXSprite->burnTime - 4, 0);
|
||||||
actDamageSprite(actor->GetBurnSource(), actor, kDamageFall, 8);
|
actDamageSprite(actor->GetBurnSource(), actor, kDamageBurn, 8);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pXSprite->Proximity)
|
if (pXSprite->Proximity)
|
||||||
|
|
Loading…
Reference in a new issue