diff --git a/src/k_bot.cpp b/src/k_bot.cpp index 516021966..d9d91a134 100644 --- a/src/k_bot.cpp +++ b/src/k_bot.cpp @@ -117,8 +117,6 @@ void K_SetBot(UINT8 newplayernum, UINT8 skinnum, UINT8 difficulty, botStyle_e st playernode[newplayernum] = servernode; - CONS_Printf("addbot diff %d\n", difficulty); - // this will permit unlocks memcpy(&players[newplayernum].availabilities, R_GetSkinAvailabilities(false, skinnum), MAXAVAILABILITY*sizeof(UINT8)); diff --git a/src/k_grandprix.cpp b/src/k_grandprix.cpp index a96f7b977..004ae6013 100644 --- a/src/k_grandprix.cpp +++ b/src/k_grandprix.cpp @@ -389,7 +389,6 @@ void K_UpdateGrandPrixBots(void) if (players[i].botvars.diffincrease) { - CONS_Printf("in %d inc %d", players[i].botvars.difficulty, players[i].botvars.diffincrease); if (players[i].botvars.diffincrease < 0) players[i].botvars.difficulty = std::max(1, players[i].botvars.difficulty - players[i].botvars.diffincrease); else @@ -400,8 +399,6 @@ void K_UpdateGrandPrixBots(void) players[i].botvars.difficulty = MAXBOTDIFFICULTY; } - CONS_Printf(" out %d\n", players[i].botvars.difficulty); - players[i].botvars.diffincrease = 0; } @@ -642,8 +639,6 @@ void K_IncreaseBotDifficulty(player_t *bot) increase += rankNudge; - CONS_Printf("raising %d by %d - %d\n", bot->botvars.difficulty, increase, bot->botvars.difficulty + increase); - if (increase <= 0) { // TYRON: We want to allow SMALL bot rank downs if a player gets rolled but still squeaks by.