mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 00:41:02 +00:00
Corrected a silly oversight. No, you can't swap your carry stuff when recycling!
This commit is contained in:
parent
b2c0930807
commit
b53e69b949
1 changed files with 1 additions and 1 deletions
|
@ -5952,7 +5952,7 @@ void A_RecyclePowers(mobj_t *actor)
|
|||
|
||||
for (j = 0; j < NUMPOWERS; j++)
|
||||
{
|
||||
if (j == pw_flashing || j == pw_underwater || j == pw_spacetime
|
||||
if (j == pw_flashing || j == pw_underwater || j == pw_spacetime || j == pw_carry
|
||||
|| j == pw_tailsfly || j == pw_extralife || j == pw_nocontrol || j == pw_super)
|
||||
continue;
|
||||
players[recv_pl].powers[j] = powers[send_pl][j];
|
||||
|
|
Loading…
Reference in a new issue