From bca621a883c573b6d888fba8f69d0f8e0bc159a9 Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Tue, 10 Sep 2024 11:52:22 +0800 Subject: [PATCH] Disable pet taunt --- src/strategy/actions/GenericActions.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategy/actions/GenericActions.cpp b/src/strategy/actions/GenericActions.cpp index 84997212..9682d2ef 100644 --- a/src/strategy/actions/GenericActions.cpp +++ b/src/strategy/actions/GenericActions.cpp @@ -38,7 +38,7 @@ bool TogglePetSpellAutoCastAction::Execute(Event event) bool shouldApply = true; // imp's spell, felhunte's intelligence, cat stealth if (spellId == 4511 || spellId == 1742 || spellId == 54424 || spellId == 57564 || spellId == 57565 || - spellId == 57566 || spellId == 57567 || spellId == 24450) + spellId == 57566 || spellId == 57567 || spellId == 24450 || spellId == 53477) { shouldApply = false; }