From ba628a1584a611fcbd6866906c6a02763bf4c7a4 Mon Sep 17 00:00:00 2001 From: Flukesx Date: Wed, 5 Aug 2026 19:05:11 +1000 Subject: [PATCH] Change bot status to 'dnd' and update activity --- src/config/bot.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config/bot.js b/src/config/bot.js index 86dc861cc3..a6fe80f82f 100644 --- a/src/config/bot.js +++ b/src/config/bot.js @@ -11,7 +11,7 @@ export const botConfig = { // - "invisible" = appears offline presence: { // Current online state shown on Discord. - status: "online", + status: "dnd", // Activity lines shown under the bot name. // `type` number mapping from Discord: @@ -23,9 +23,9 @@ export const botConfig = { // 5 = Competing activities: [ { - name: "Custom Status", // required by Discord API, not shown in the client + name: "Flukesx", // required by Discord API, not shown in the client state: "stalking", // this is what people actually see - type: 4, // Custom + type: 3, // Custom }, ], }, @@ -648,4 +648,4 @@ export function getRandomColor() { return colors[Math.floor(Math.random() * colors.length)]; } -export default botConfig; \ No newline at end of file +export default botConfig;