mirror of
https://github.com/mod-playerbots/mod-playerbots
synced 2025-11-29 15:58:20 +08:00
Ulduar flame leviathan (normal mode)
This commit is contained in:
@@ -13,9 +13,15 @@
|
||||
class RaidUlduarActionContext : public NamedObjectContext<Action>
|
||||
{
|
||||
public:
|
||||
RaidUlduarActionContext() {}
|
||||
RaidUlduarActionContext()
|
||||
{
|
||||
creators["flame leviathan vehicle"] = &RaidUlduarActionContext::flame_leviathan_vehicle;
|
||||
creators["flame leviathan enter vehicle"] = &RaidUlduarActionContext::flame_leviathan_enter_vehicle;
|
||||
}
|
||||
|
||||
private:
|
||||
static Action* flame_leviathan_vehicle(PlayerbotAI* ai) { return new FlameLeviathanVehicleAction(ai); }
|
||||
static Action* flame_leviathan_enter_vehicle(PlayerbotAI* ai) { return new FlameLeviathanEnterVehicleAction(ai); }
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user