From aa32b0a639ac93e46c56a658efc73cc212790f5e Mon Sep 17 00:00:00 2001 From: ds Date: Thu, 5 Nov 2020 11:50:37 +0300 Subject: [PATCH] vision: use old look angles update only for low-skilled bots. --- src/navigate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigate.cpp b/src/navigate.cpp index 4730157..a689c77 100644 --- a/src/navigate.cpp +++ b/src/navigate.cpp @@ -2820,7 +2820,7 @@ void Bot::updateLookAngles () { direction.clampAngles (); // lower skilled bot's have lower aiming - if (m_difficulty < Difficulty::Normal) { + if (m_difficulty == Difficulty::Noob) { updateLookAnglesNewbie (direction, delta); updateBodyAngles ();