From d1001ccc60d2f55773c6097be973e99c610b6a69 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Mon, 29 Apr 2024 20:21:37 -0700 Subject: [PATCH] Weak bots don't whip --- src/k_botitem.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/k_botitem.cpp b/src/k_botitem.cpp index 4c2c14837..056c0d4aa 100644 --- a/src/k_botitem.cpp +++ b/src/k_botitem.cpp @@ -1497,6 +1497,13 @@ static void K_BotItemInstashield(const player_t *player, ticcmd_t *cmd) return; } + if (player->botvars.difficulty <= 7) + { + // Weak players don't whip. + // Weak bots don't either. + return; + } + // Find players within the instashield's range. for (i = 0; i < MAXPLAYERS; i++) {