mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-04-04 17:02:24 +00:00
Line from revert
This commit is contained in:
parent
365a59f186
commit
03c4a626c3
1 changed files with 1 additions and 1 deletions
|
@ -3409,7 +3409,7 @@ void P_PlayerRingBurst(player_t *player, INT32 num_rings)
|
|||
return;
|
||||
|
||||
// If no health, don't spawn ring!
|
||||
if (player->rings <= 0)
|
||||
if (((maptol & TOL_NIGHTS) && player->spheres <= 0) || (!(maptol & TOL_NIGHTS) && player->rings <= 0))
|
||||
num_rings = 0;
|
||||
|
||||
if (num_rings > 32 && player->powers[pw_carry] != CR_NIGHTSFALL)
|
||||
|
|
Loading…
Reference in a new issue