diff --git a/src/k_bot.c b/src/k_bot.c index 7767a9f60..ec981ef44 100644 --- a/src/k_bot.c +++ b/src/k_bot.c @@ -849,7 +849,7 @@ static INT16 K_FindBotController(mobj_t *mo) player - The bot player this prediction is for. Return:- - N/A + None --------------------------------------------------*/ static void K_DrawPredictionDebug(botprediction_t *predict, player_t *player) { diff --git a/src/k_bot.h b/src/k_bot.h index f5187ece6..38408c6af 100644 --- a/src/k_bot.h +++ b/src/k_bot.h @@ -200,14 +200,14 @@ fixed_t K_BotReducePrediction(player_t *player); /*-------------------------------------------------- void K_NudgePredictionTowardsObjects(botprediction_t *predict, player_t *player); - Generates a sum for objects to steer towards/away from. + Moves the bot's prediction, based on objects around the bot. Input Arguments:- + predict - The bot's prediction to nudge. player - Player to compare. - turn - Turn value before object steering. Return:- - Turn amount sum to add to final product. + None --------------------------------------------------*/ void K_NudgePredictionTowardsObjects(botprediction_t *predict, player_t *player); diff --git a/src/k_botsearch.c b/src/k_botsearch.c index 81f31229e..dbf80f586 100644 --- a/src/k_botsearch.c +++ b/src/k_botsearch.c @@ -433,7 +433,7 @@ fixed_t K_BotReducePrediction(player_t *player) weight - How important this object is. Return:- - N/A + None --------------------------------------------------*/ static void K_AddAttackObject(mobj_t *thing, UINT8 side, UINT8 weight) { @@ -465,7 +465,7 @@ static void K_AddAttackObject(mobj_t *thing, UINT8 side, UINT8 weight) weight - How important this object is. Return:- - N/A + None --------------------------------------------------*/ static void K_AddDodgeObject(mobj_t *thing, UINT8 side, UINT8 weight) {