[Random bots] Ensure teleport after randomize

This commit is contained in:
Yunfan Li
2024-07-11 23:01:25 +08:00
parent 2a542b1345
commit db1cfa6abc
6 changed files with 26 additions and 19 deletions

View File

@@ -23,4 +23,12 @@ class AutoLearnSpellAction : public Action
void LearnSpell(uint32 spellId, std::ostringstream* out);
};
class AutoUpgradeEquipAction : public Action
{
public:
AutoUpgradeEquipAction(PlayerbotAI* botAI, std::string const name = "auto upgrade equip") : Action(botAI, name) { }
bool Execute(Event event);
};
#endif