From 09047280469e471492cb50fe359c0385e06f3757 Mon Sep 17 00:00:00 2001 From: Sally Coolatta Date: Wed, 24 Jan 2024 15:10:17 -0500 Subject: [PATCH] Bots don't fastfall while respawning --- src/k_bot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_bot.cpp b/src/k_bot.cpp index 40a1cff60..0fc2436a2 100644 --- a/src/k_bot.cpp +++ b/src/k_bot.cpp @@ -1669,7 +1669,7 @@ static void K_BuildBotTiccmdNormal(const player_t *player, ticcmd_t *cmd) if (P_IsObjectOnGround(player->mo) == false) { - if (player->fastfall == 0) + if (player->fastfall == 0 && player->respawn.state == RESPAWNST_NONE) { if (botController != nullptr && (botController->flags & TMBOT_FASTFALL) == TMBOT_FASTFALL) {