From f27624aa6e63b8fc3a9e8ec7b729ff22be4f0dc6 Mon Sep 17 00:00:00 2001 From: avirar Date: Thu, 23 Jan 2025 21:42:31 +1100 Subject: [PATCH] Removed mount action in "protect fc" + reduced support bot chance (#892) --- src/strategy/actions/BattleGroundTactics.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/strategy/actions/BattleGroundTactics.cpp b/src/strategy/actions/BattleGroundTactics.cpp index 76f3742e..44cad2a9 100644 --- a/src/strategy/actions/BattleGroundTactics.cpp +++ b/src/strategy/actions/BattleGroundTactics.cpp @@ -2234,12 +2234,8 @@ bool BGTactics::Execute(Event event) if (getName() == "protect fc") { - if (!bot->IsMounted() && !bot->IsInCombat()) - if (botAI->DoSpecificAction("check mount state")) - return true; - uint32 role = context->GetValue("bg role")->Get(); - bool supporter = role < 5; + bool supporter = role < 4; if (supporter && protectFC()) return true; }