From e59bad26c4ef7b2d46293c359ce6fbf5d813c3fb Mon Sep 17 00:00:00 2001 From: Yunfan Li Date: Sun, 27 Jul 2025 11:30:23 +0800 Subject: [PATCH] Change drink aura for free food --- src/strategy/actions/NonCombatActions.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/strategy/actions/NonCombatActions.cpp b/src/strategy/actions/NonCombatActions.cpp index 6ee977a2..128e44ab 100644 --- a/src/strategy/actions/NonCombatActions.cpp +++ b/src/strategy/actions/NonCombatActions.cpp @@ -40,13 +40,13 @@ bool DrinkAction::Execute(Event event) float delay; if (!bot->InBattleground()) - delay = 27000.0f * (100 - p) / 100.0f; + delay = 18000.0f * (100 - p) / 100.0f; else - delay = 20000.0f * (100 - p) / 100.0f; + delay = 12000.0f * (100 - p) / 100.0f; botAI->SetNextCheckDelay(delay); - bot->AddAura(24707, bot); + bot->AddAura(25990, bot); return true; // return botAI->CastSpell(24707, bot); } @@ -90,13 +90,13 @@ bool EatAction::Execute(Event event) float delay; if (!bot->InBattleground()) - delay = 27000.0f * (100 - p) / 100.0f; + delay = 18000.0f * (100 - p) / 100.0f; else - delay = 20000.0f * (100 - p) / 100.0f; + delay = 12000.0f * (100 - p) / 100.0f; botAI->SetNextCheckDelay(delay); - bot->AddAura(24707, bot); + bot->AddAura(25990, bot); return true; }