Remove debug print

This commit is contained in:
Antonio Martinez 2025-06-07 17:52:51 -04:00
parent cd439be74c
commit 0f500ac0c6
2 changed files with 0 additions and 7 deletions

View file

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

View file

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