From 8902e46f25d733c0da9881684e415b25f1c3d646 Mon Sep 17 00:00:00 2001 From: Cesium Date: Tue, 21 Oct 2025 23:57:37 -0400 Subject: [PATCH] i fixed it i hope, i just wanted it to be online still and my workflow currently is test on prod and pray --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index 97fb78d..51ae07d 100644 --- a/index.js +++ b/index.js @@ -1,7 +1,7 @@ const token = process.env.DISCORD_TOKEN // the basic discord setup stuff yoinked from their guide -const { Client, Events, GatewayIntentBits, Partials } = require('discord.js'); +const { Client, Events, GatewayIntentBits, Partials, ActivityType } = require('discord.js'); const client = new Client({ intents: [ GatewayIntentBits.Guilds, @@ -16,6 +16,7 @@ const client = new Client({ }); client.once(Events.ClientReady, readyClient => { console.log(`Discord: Connected as ${readyClient.user.tag}`); + client.user.setActivity('for x.com links', { type: ActivityType.Watching }); }); client.login(token);