- Added chat command to wipe group (#1408)

This commit is contained in:
kadeshar
2025-07-04 17:14:07 +02:00
committed by GitHub
parent c0aa55416b
commit 305f769a84
5 changed files with 49 additions and 0 deletions

View File

@@ -132,6 +132,7 @@ public:
creators["disperse"] = &ChatTriggerContext::disperse;
creators["calc"] = &ChatTriggerContext::calc;
creators["qi"] = &ChatTriggerContext::qi;
creators["wipe"] = &ChatTriggerContext::wipe;
}
private:
@@ -243,6 +244,7 @@ private:
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"); }
static Trigger* wipe(PlayerbotAI* botAI) { return new ChatCommandTrigger(botAI, "wipe"); }
};
#endif