mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
fix disappearing bodies in coop with respawning monsters (#211)
This commit is contained in:
parent
c050a0c4c8
commit
3b463bc38e
1 changed files with 1 additions and 1 deletions
|
@ -6880,7 +6880,7 @@ bool actCheckRespawn(spritetype *pSprite)
|
|||
pSprite->owner = pSprite->statnum;
|
||||
actPostSprite(pSprite->index, 8);
|
||||
pSprite->flags |= 16;
|
||||
if (pSprite->type >= kDudeBase && pSprite->type < kDudeMax)
|
||||
if (!(pSprite->type >= kDudeBase && pSprite->type < kDudeMax))
|
||||
{
|
||||
pSprite->cstat &= ~257;
|
||||
pSprite->x = baseSprite[nSprite].x;
|
||||
|
|
Loading…
Reference in a new issue