mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-03-24 11:42:03 +00:00
Tag damage fix error
This commit is contained in:
parent
62e288a664
commit
14c17cf012
1 changed files with 1 additions and 1 deletions
|
@ -2784,7 +2784,7 @@ static inline boolean P_TagDamage(mobj_t *target, mobj_t *inflictor, mobj_t *sou
|
|||
else if (player->rings > 0) // Ring loss
|
||||
{
|
||||
P_PlayRinglossSound(target);
|
||||
P_PlayerRingBurst(player, max(player->spheres, player->rings));
|
||||
P_PlayerRingBurst(player, player->rings);
|
||||
player->rings = 0;
|
||||
}
|
||||
else // Death
|
||||
|
|
Loading…
Reference in a new issue