diff options
| -rw-r--r-- | packages/gateway/src/commands/utilities.ts | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/packages/gateway/src/commands/utilities.ts b/packages/gateway/src/commands/utilities.ts index b109bdb..b4d32ba 100644 --- a/packages/gateway/src/commands/utilities.ts +++ b/packages/gateway/src/commands/utilities.ts @@ -489,21 +489,21 @@ export const sendPersonaLog = async ( if (!channel || !("send" in channel)) return; const { EmbedBuilder } = await import("discord.js"); - + const embed = new EmbedBuilder() .setTitle( - type === "persona" - ? "🎠Persona Message" - : type === "conversation" - ? "💬 Conversation Starter" - : "👀 Random Reaction" + type === "persona" + ? "🎠Persona Message" + : type === "conversation" + ? "💬 Conversation Starter" + : "👀 Random Reaction", ) .setColor( - type === "persona" - ? "#ff6b6b" - : type === "conversation" - ? "#4ecdc4" - : "#ffd93d" + type === "persona" + ? "#ff6b6b" + : type === "conversation" + ? "#4ecdc4" + : "#ffd93d", ) .addFields( { @@ -515,7 +515,7 @@ export const sendPersonaLog = async ( name: "Type", value: isPrimer ? "Primer Message" : "Regular Message", inline: true, - } + }, ) .setTimestamp(); |