Hunter equip bug (#1050)

This commit is contained in:
avirar
2025-03-04 01:09:47 +11:00
committed by GitHub
parent d8cb75d376
commit 9edddc5b26
4 changed files with 46 additions and 8 deletions

View File

@@ -127,6 +127,7 @@ public:
creators["dps"] = &ChatTriggerContext::dps;
creators["disperse"] = &ChatTriggerContext::disperse;
creators["calc"] = &ChatTriggerContext::calc;
creators["qi"] = &ChatTriggerContext::qi;
}
private:
@@ -233,6 +234,7 @@ private:
static Trigger* dps(PlayerbotAI* ai) { return new ChatCommandTrigger(ai, "dps"); }
static Trigger* disperse(PlayerbotAI* ai) { return new ChatCommandTrigger(ai, "disperse"); }
static Trigger* calc(PlayerbotAI* ai) { return new ChatCommandTrigger(ai, "calc"); }
static Trigger* qi(PlayerbotAI* botAI) { return new ChatCommandTrigger(botAI, "qi"); }
};
#endif