Merge pull request #519 from alexey-lysiuk/noreps_dmgfloor

Do not respawn on damaging floors when sv_samespawnspot is enabled
This commit is contained in:
coelckers 2016-01-30 12:02:43 +01:00
commit c1ef95faad

View file

@ -4431,6 +4431,7 @@ APlayerPawn *P_SpawnPlayer (FPlayerStart *mthing, int playernum, int flags)
( gameaction != ga_worlddone ) &&
( p->mo != NULL ) &&
( !(p->mo->Sector->Flags & SECF_NORESPAWN) ) &&
( NULL != p->attacker ) && // don't respawn on damaging floors
( p->mo->Sector->damageamount < TELEFRAG_DAMAGE )) // this really should be a bit smarter...
{
spawn_x = p->mo->X();