diff options
| author | Fuwn <[email protected]> | 2025-10-11 11:30:23 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-10-11 11:30:23 -0700 |
| commit | 65907e89b1362dcfe7d3ce96200b2e14f63477e4 (patch) | |
| tree | f8bc04d755a81aa654701553c9e94916fa766193 /packages/gateway/src/commands | |
| parent | feat(gateway:prm): Increase message threshold (diff) | |
| download | umabotdiscord-65907e89b1362dcfe7d3ce96200b2e14f63477e4.tar.xz umabotdiscord-65907e89b1362dcfe7d3ce96200b2e14f63477e4.zip | |
feat(gateway:prm): Add reply handling
Diffstat (limited to 'packages/gateway/src/commands')
| -rw-r--r-- | packages/gateway/src/commands/utilities.ts | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/packages/gateway/src/commands/utilities.ts b/packages/gateway/src/commands/utilities.ts index d6ec548..7ed18b4 100644 --- a/packages/gateway/src/commands/utilities.ts +++ b/packages/gateway/src/commands/utilities.ts @@ -477,7 +477,7 @@ export const getAllChannelsInCategory = async ( export const sendPersonaLog = async ( client: Client, - type: "persona" | "conversation" | "reaction", + type: "persona" | "persona-reply" | "conversation" | "reaction", personaName: string, messageLink?: string, isPrimer: boolean = false, @@ -495,16 +495,20 @@ export const sendPersonaLog = async ( .setTitle( type === "persona" ? "🎠Persona Message" - : type === "conversation" - ? "💬 Conversation Starter" - : "👀 Random Reaction", + : type === "persona-reply" + ? "💠Persona Reply" + : type === "conversation" + ? "💬 Conversation Starter" + : "👀 Random Reaction", ) .setColor( type === "persona" ? "#ff6b6b" - : type === "conversation" - ? "#4ecdc4" - : "#ffd93d", + : type === "persona-reply" + ? "#9b59b6" + : type === "conversation" + ? "#4ecdc4" + : "#ffd93d", ) .addFields( { |