-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
42 lines (38 loc) · 1.16 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { Permissions } from 'discord.js'
const { ADD_REACTIONS, STREAM, VIEW_CHANNEL, SEND_MESSAGES, EMBED_LINKS, USE_EXTERNAL_EMOJIS, CONNECT, SPEAK, DEAFEN_MEMBERS } = Permissions.FLAGS;
export default {
development: true,
generate_command_json: true,
creator: "243072972326305798",
permission_bit: ADD_REACTIONS | STREAM | VIEW_CHANNEL | SEND_MESSAGES | EMBED_LINKS | USE_EXTERNAL_EMOJIS | CONNECT | SPEAK | DEAFEN_MEMBERS,
allow_mention_prefix: true,
default_prefix: {
dev: 's!',
prod: 'd!'
},
presence_settings: {
switch_interval: 25e3,
activities: [
{
type: "WATCHING",
name: "s!help"
},
{
type: "WATCHING",
name: "version ${version}"
},
{
type: "WATCHING",
name: "us on spyral.gg"
},
{
type: "PLAYING",
name: "with all the commands on commands.spyral.gg"
},
{
type: "WATCHING",
name: "over ${serverCount} guilds"
}
]
}
};