Let rings chain other boosts but don't let other boosts chain rings
This commit is contained in:
parent
fe30efacdd
commit
b04b8a097a
1 changed files with 1 additions and 1 deletions
|
|
@ -7181,7 +7181,7 @@ static void K_HandleRingDeincrement(player_t *player, boolean chainnerf)
|
|||
}
|
||||
}
|
||||
|
||||
player->ringboost = max(player->chaintimer ? 1: 0, player->ringboost - finalringtimer);
|
||||
player->ringboost = max(0, player->ringboost - finalringtimer);
|
||||
}
|
||||
|
||||
/** \brief Decreases various kart timers and powers per frame. Called in P_PlayerThink in p_user.c
|
||||
|
|
|
|||
Loading…
Reference in a new issue