param: afegits comentaris a tots els parametres

param: afegit parametre per a establir a partir de quin segon es pot saltar el compte enrere de continuar
This commit is contained in:
2025-06-28 10:28:21 +02:00
parent 8af6d4ef28
commit 65ba55aa12
6 changed files with 123 additions and 114 deletions

View File

@@ -1539,7 +1539,7 @@ void Game::handlePlayerContinue(const std::shared_ptr<Player> &player)
input_->checkInput(InputAction::FIRE_CENTER, INPUT_DO_NOT_ALLOW_REPEAT, Options::controllers[controllerIndex].type, Options::controllers[controllerIndex].index) ||
input_->checkInput(InputAction::FIRE_RIGHT, INPUT_DO_NOT_ALLOW_REPEAT, Options::controllers[controllerIndex].type, Options::controllers[controllerIndex].index))
{
if (player->getContinueCounter() < 7)
if (player->getContinueCounter() < param.scoreboard.skip_countdown_value)
{
player->decContinueCounter();
}