mirror of
https://github.com/mod-playerbots/mod-playerbots.git
synced 2026-01-15 09:50:27 +00:00
enable battleground
This commit is contained in:
@@ -90,7 +90,7 @@ class StrategyContext : public NamedObjectContext<Strategy>
|
||||
creators["ranged"] = &StrategyContext::ranged;
|
||||
creators["behind"] = &StrategyContext::behind;
|
||||
creators["bg"] = &StrategyContext::bg;
|
||||
creators["Battleground"] = &StrategyContext::Battleground;
|
||||
creators["battleground"] = &StrategyContext::battleground;
|
||||
creators["warsong"] = &StrategyContext::warsong;
|
||||
creators["alterac"] = &StrategyContext::alterac;
|
||||
creators["arathi"] = &StrategyContext::arathi;
|
||||
@@ -151,7 +151,7 @@ class StrategyContext : public NamedObjectContext<Strategy>
|
||||
static Strategy* possible_adds(PlayerbotAI* botAI) { return new PossibleAddsStrategy(botAI); }
|
||||
static Strategy* mount(PlayerbotAI* botAI) { return new MountStrategy(botAI); }
|
||||
static Strategy* bg(PlayerbotAI* botAI) { return new BGStrategy(botAI); }
|
||||
static Strategy* Battleground(PlayerbotAI* botAI) { return new BattlegroundStrategy(botAI); }
|
||||
static Strategy* battleground(PlayerbotAI* botAI) { return new BattlegroundStrategy(botAI); }
|
||||
static Strategy* warsong(PlayerbotAI* botAI) { return new WarsongStrategy(botAI); }
|
||||
static Strategy* alterac(PlayerbotAI* botAI) { return new AlteracStrategy(botAI); }
|
||||
static Strategy* arathi(PlayerbotAI* botAI) { return new ArathiStrategy(botAI); }
|
||||
|
||||
Reference in New Issue
Block a user