Let rings chain other boosts but don't let other boosts chain rings

This commit is contained in:
NepDisk 2025-03-28 18:48:05 -04:00
parent fe30efacdd
commit b04b8a097a

View file

@ -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