mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Add in missing super check
git-svn-id: https://code.orospakr.ca/svn/srb2/trunk@8984 6de4a73c-47e2-0310-b8c1-93d6ecd3f8cd
This commit is contained in:
parent
5d1ef1ff31
commit
389299230d
1 changed files with 5 additions and 0 deletions
|
@ -5660,6 +5660,11 @@ void A_RecyclePowers(mobj_t *actor)
|
|||
if (playeringame[i] && players[i].mo && players[i].mo->health > 0 && players[i].playerstate == PST_LIVE
|
||||
&& !players[i].exiting && !((netgame || multiplayer) && players[i].spectator))
|
||||
{
|
||||
#ifndef WEIGHTEDRECYCLER
|
||||
if (players[i].powers[pw_super])
|
||||
continue; // Ignore super players
|
||||
#endif
|
||||
|
||||
numplayers++;
|
||||
postscramble[j] = playerslist[j] = (UINT8)i;
|
||||
|
||||
|
|
Loading…
Reference in a new issue