mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-22 02:00:11 +00:00
Underwater: do not spawn bubbles around player using Bubble Shield
This commit is contained in:
parent
44ff1d26cc
commit
33a31f9979
1 changed files with 1 additions and 1 deletions
|
|
@ -1778,7 +1778,7 @@ static void P_DoBubbleBreath(player_t *player)
|
|||
fixed_t z = player->mo->z;
|
||||
mobj_t *bubble = NULL;
|
||||
|
||||
if (!(player->mo->eflags & MFE_UNDERWATER) || player->spectator)
|
||||
if (!(player->mo->eflags & MFE_UNDERWATER) || player->spectator || player->curshield == KSHIELD_BUBBLE)
|
||||
return;
|
||||
|
||||
if (player->charflags & SF_MACHINE)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue