summaryrefslogtreecommitdiff
path: root/packages/gateway
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-10-10 11:43:49 -0700
committerFuwn <[email protected]>2025-10-10 11:43:49 -0700
commita578ba193193080f1608a1666add627b2a82b1a7 (patch)
treed64ac31bcd86d17cfa9272c98972f703bf01e3f6 /packages/gateway
parentfeat(gateway): Unify persona message generation (diff)
downloadumabotdiscord-a578ba193193080f1608a1666add627b2a82b1a7.tar.xz
umabotdiscord-a578ba193193080f1608a1666add627b2a82b1a7.zip
style(gateway): Stylise
Diffstat (limited to 'packages/gateway')
-rw-r--r--packages/gateway/src/commands/utilities.ts24
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();