Army of the dead

This commit is contained in:
Yunfan Li
2024-04-10 20:32:43 +08:00
parent 17ddf6fbc5
commit 00a3436d77
6 changed files with 15 additions and 6 deletions

View File

@@ -153,4 +153,10 @@ class DeathAndDecayCooldownTrigger : public SpellCooldownTrigger
bool IsActive() override;
};
class ArmyOfTheDeadTrigger : public BoostTrigger
{
public:
ArmyOfTheDeadTrigger(PlayerbotAI* botAI) : BoostTrigger(botAI, "army of the dead") { }
};
#endif