Cat druid energy control

This commit is contained in:
Yunfan Li
2024-09-02 00:30:10 +08:00
parent aab8cf04d3
commit 4c77f71bd4
5 changed files with 32 additions and 6 deletions

View File

@@ -250,12 +250,12 @@ public:
return false;
Aura* roar = botAI->GetAura("savage roar", bot);
bool roarCheck = !roar || roar->GetDuration() > 8000;
bool roarCheck = !roar || roar->GetDuration() > 10000;
if (!roarCheck)
return false;
Aura* rip = botAI->GetAura("rip", target, true);
bool ripCheck = !rip || rip->GetDuration() > 8000;
bool ripCheck = !rip || rip->GetDuration() > 10000;
if (!ripCheck)
return false;