From 176b6f2bf174d01966ac1b578fc85b262afbfd39 Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Thu, 24 Aug 2023 22:04:58 +0800 Subject: [PATCH] cat stealth auto cast off --- src/strategy/actions/GenericActions.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/strategy/actions/GenericActions.cpp b/src/strategy/actions/GenericActions.cpp index 43da2703..b2a987a2 100644 --- a/src/strategy/actions/GenericActions.cpp +++ b/src/strategy/actions/GenericActions.cpp @@ -29,10 +29,10 @@ bool TogglePetSpellAutoCastAction::Execute(Event event) { if (spellInfo->IsPassive()) continue; - // imp's spell, felhunte's intelligence, ghoul's leap + // imp's spell, felhunte's intelligence, ghoul's leap, cat stealth if (spellId == 4511 || spellId == 1742 || spellId == 54424 || spellId == 57564 || spellId == 57565 || spellId == 57566 || spellId == 57567 || - spellId == 47482) { + spellId == 47482 || spellId == 24450) { pet->ToggleAutocast(spellInfo, false); } else { pet->ToggleAutocast(spellInfo, true);