From b81fdef870f64b5e25138662cc503c4fe22b18a1 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Sat, 2 Mar 2024 00:24:34 -0700 Subject: [PATCH] Fix some low-hanging comments --- src/k_bot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/k_bot.cpp b/src/k_bot.cpp index 8dc1d64ee..66512be98 100644 --- a/src/k_bot.cpp +++ b/src/k_bot.cpp @@ -577,14 +577,14 @@ fixed_t K_BotRubberband(const player_t *player) const fixed_t difficultyEase = ((player->botvars.difficulty - 1) * FRACUNIT) / (MAXBOTDIFFICULTY - 1); // Lv. 1: x0.65 avg - // Lv. MAX: x1.1 avg + // Lv. MAX: x1.05 avg const fixed_t rubberBase = Easing_OutSine( difficultyEase, FRACUNIT * 65 / 100, FRACUNIT * 105 / 100 ); - // +/- x0.25 + // +/- x0.35 const fixed_t rubberStretchiness = FixedMul( FixedDiv( 35 * FRACUNIT / 100,