From 59fa615cc8812a9e2f3750aee88df3a61e78d593 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Fri, 26 Feb 2021 06:12:19 -0500 Subject: [PATCH] Update comment --- src/k_bot.c | 2 +- src/k_bot.h | 6 +++--- src/k_botsearch.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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) {