From cfac2ab47243fd0845aa95ec8f68b15c8e60ac33 Mon Sep 17 00:00:00 2001 From: jeefo Date: Tue, 19 Sep 2023 10:24:06 +0300 Subject: [PATCH] nav: disable player avoidance when in csdm free for all mode --- src/navigate.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/navigate.cpp b/src/navigate.cpp index f1bdb8e..540b632 100644 --- a/src/navigate.cpp +++ b/src/navigate.cpp @@ -423,7 +423,7 @@ void Bot::ignoreCollision () { } void Bot::doPlayerAvoidance (const Vector &normal) { - if (cv_has_team_semiclip.bool_ ()) { + if (cv_has_team_semiclip.bool_ () || game.is (GameFlags::FreeForAll)) { return; // no player avoiding when with semiclip plugin }