add rich presence (#79)
All checks were successful
Lint and Format Check / lint-and-format (pull_request) Successful in 10s
All checks were successful
Lint and Format Check / lint-and-format (pull_request) Successful in 10s
This commit is contained in:
parent
fdc081fd6d
commit
7e13965f1c
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
import { Player } from "discord-player";
|
||||
import { Client, Collection, GatewayIntentBits } from "discord.js";
|
||||
import { ActivityType, Client, Collection, GatewayIntentBits } from "discord.js";
|
||||
import { readFileSync } from "fs";
|
||||
import { Database } from "sqlite3";
|
||||
import "../modules/client";
|
||||
|
@ -16,6 +16,9 @@ export default async () => {
|
|||
GatewayIntentBits.MessageContent,
|
||||
GatewayIntentBits.GuildVoiceStates,
|
||||
],
|
||||
presence: {
|
||||
activities: [{ name: "/help", type: ActivityType.Watching }],
|
||||
},
|
||||
});
|
||||
|
||||
client.config = {
|
||||
|
|
Loading…
Reference in a new issue