mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Reduce shrink timer
This commit is contained in:
parent
7c85b6f75f
commit
5228f85fee
1 changed files with 2 additions and 2 deletions
|
|
@ -3920,7 +3920,7 @@ static void K_DoShrink(player_t *user)
|
|||
{
|
||||
// Start shrinking!
|
||||
K_DropItems(&players[i]);
|
||||
players[i].kartstuff[k_growshrinktimer] = -(20*TICRATE);
|
||||
players[i].kartstuff[k_growshrinktimer] = -(15*TICRATE);
|
||||
|
||||
if (players[i].mo && !P_MobjWasRemoved(players[i].mo))
|
||||
{
|
||||
|
|
@ -5735,7 +5735,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground)
|
|||
&& NO_HYUDORO && !(HOLDING_ITEM
|
||||
|| player->kartstuff[k_itemamount]
|
||||
|| player->kartstuff[k_itemroulette]
|
||||
|| player->kartstuff[k_growshrinktimer]
|
||||
|| player->kartstuff[k_growshrinktimer] // Being disabled during Shrink was unintended but people seemed to be okay with it sooo...
|
||||
|| player->kartstuff[k_rocketsneakertimer]))
|
||||
player->kartstuff[k_userings] = 1;
|
||||
else
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue