rajouté des commentaires

This commit is contained in:
antpoms 2025-06-16 17:38:21 +02:00
parent b542aea9b3
commit b5e08cedd5
3 changed files with 36 additions and 8 deletions

View file

@ -165,9 +165,9 @@ void Game::update_scores(bool good_action) {
ScoreMultiplierText.setString(
std::format("ScoreMultiplier = {}", score_multiplier));
if (score_multiplier < 15) {
if (score_multiplier < 5) {
carrot.changeState(Angry);
} else if (score_multiplier < 60) {
} else if (score_multiplier < 15) {
carrot.changeState(Neutral);
} else {
carrot.changeState(Happy);