mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Only allow explicitly living players to trigger sector specials
This commit is contained in:
parent
cc3a9b1bb1
commit
511518f0e4
1 changed files with 1 additions and 1 deletions
|
|
@ -4395,7 +4395,7 @@ void P_ProcessSpecialSector(player_t *player, sector_t *sector, sector_t *rovers
|
||||||
// Ignore dead players.
|
// Ignore dead players.
|
||||||
// If this strange phenomenon could be potentially used in levels,
|
// If this strange phenomenon could be potentially used in levels,
|
||||||
// TODO: modify this to accommodate for it.
|
// TODO: modify this to accommodate for it.
|
||||||
if (player->playerstate == PST_DEAD)
|
if (player->playerstate != PST_LIVE)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Conveyor stuff
|
// Conveyor stuff
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue