mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-02-04 11:23:48 +00:00
12 lines
267 B
C++
12 lines
267 B
C++
#include "RaidAq20Strategy.h"
|
|
|
|
#include "Strategy.h"
|
|
|
|
void RaidAq20Strategy::InitTriggers(std::vector<TriggerNode*>& triggers)
|
|
{
|
|
triggers.push_back(
|
|
new TriggerNode("aq20 move to crystal",
|
|
{ NextAction("aq20 use crystal", ACTION_RAID) }));
|
|
|
|
}
|