mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Longer flash period, but quicker deflate
This commit is contained in:
parent
068db36368
commit
c90bdc1c37
1 changed files with 3 additions and 1 deletions
|
|
@ -6508,7 +6508,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
S_StartSound(player->mo, sfx_s3k75);
|
||||
player->kartstuff[k_bubbleblowup]++;
|
||||
player->kartstuff[k_bubblecool] = player->kartstuff[k_bubbleblowup]*3;
|
||||
if (player->kartstuff[k_bubbleblowup] > bubbletime+10)
|
||||
if (player->kartstuff[k_bubbleblowup] > bubbletime*2)
|
||||
{
|
||||
K_ThrowKartItem(player, (player->kartstuff[k_throwdir] > 0), MT_BUBBLESHIELDTRAP, -1, 0);
|
||||
K_PlayAttackTaunt(player->mo);
|
||||
|
|
@ -6519,6 +6519,8 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (player->kartstuff[k_bubbleblowup] > bubbletime)
|
||||
player->kartstuff[k_bubbleblowup] = bubbletime;
|
||||
if (player->kartstuff[k_bubbleblowup])
|
||||
player->kartstuff[k_bubbleblowup]--;
|
||||
player->kartstuff[k_holdready] = (player->kartstuff[k_bubblecool] ? 0 : 1);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue