Skip to content

Commit

Permalink
Changed status
Browse files Browse the repository at this point in the history
  • Loading branch information
Struck713 committed Sep 18, 2023
1 parent 121e829 commit d741c3b
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/app.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Client, Events, GatewayIntentBits } from "discord.js";
import { ActivityType, Client, Events, GatewayIntentBits } from "discord.js";
import { YOUTUBE, TOKEN, BRUH } from '../config.json';
import { Commands } from "./lib/command";
import { VoiceManager } from "./lib/voice";
Expand All @@ -17,6 +17,17 @@ client.once(Events.ClientReady, async client => {
console.log(`Logged in as ${client.user.tag}`);
console.log(`| Registered ${Commands.length} commands!`);
console.log(`| Voice Manager Status: ${voiceManager ? "ONLINE" : "OFFLINE"}`);

client.user.setPresence({
status: "idle",
activities: [
{
name: "The Brook & The Bluff",
type: ActivityType.Listening,
url: "https://open.spotify.com/track/7IN1eMlEGrcFUt2dNH1TQ2?si=61f9c4b1f4ea43ff",
}
]
});
});

client.on(Events.InteractionCreate, async interaction => {
Expand Down

0 comments on commit d741c3b

Please sign in to comment.