From b9dbfe9646e8b0bed622d6dc4060d82043581120 Mon Sep 17 00:00:00 2001 From: Tecc Date: Sat, 27 Sep 2025 22:50:14 +0200 Subject: [PATCH] fix: Allow following master's mount state regardless of group leader in CheckMountStateAction --- src/strategy/actions/CheckMountStateAction.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/strategy/actions/CheckMountStateAction.cpp b/src/strategy/actions/CheckMountStateAction.cpp index 0c36935e..589984ac 100644 --- a/src/strategy/actions/CheckMountStateAction.cpp +++ b/src/strategy/actions/CheckMountStateAction.cpp @@ -152,13 +152,9 @@ bool CheckMountStateAction::Execute(Event /*event*/) bool inBattleground = bot->InBattleground(); - // If there is a master and bot not in BG + // If there is a master and bot not in BG, follow master's mount state regardless of group leader if (master && !inBattleground) { - Group* group = bot->GetGroup(); - if (!group || group->GetLeaderGUID() != master->GetGUID()) - return false; - if (ShouldFollowMasterMountState(master, noAttackers, shouldMount)) return Mount();