forked from embee/woomy
Update configTemplate.js
This commit is contained in:
parent
3af8fdb2b0
commit
85be37097d
1 changed files with 65 additions and 64 deletions
|
@ -1,12 +1,12 @@
|
|||
const config = {
|
||||
// ID's
|
||||
"owners": ["433790467830972417", "324937993972350976"],
|
||||
"owners": [], // Adding your ID here will give you access to dangerous commands like eval. Please be careful with who you add here! Eval can be used to modify the host machine.
|
||||
|
||||
// Tokens
|
||||
"token": "",
|
||||
"devtoken": "",
|
||||
"ytkey": "",
|
||||
"dblkey": "",
|
||||
"token": "", // Your bot's token.
|
||||
"devtoken": "", // (optional) another token, meant for a bot used for development
|
||||
"ytkey": "", // Youtube API key, needed for music searching to work
|
||||
"dblkey": "", // top.gg key, sends bot statistics to top.gg. You do not need this.
|
||||
|
||||
// Default per-server settings
|
||||
"defaultSettings" : {
|
||||
|
@ -26,7 +26,8 @@ const config = {
|
|||
"blacklisted": "ARRAY",
|
||||
"botChannels": "ARRAY",
|
||||
"AFK": "ARRAY",
|
||||
"SAR": "ARRAY"
|
||||
"SAR": "ARRAY",
|
||||
"customCommands": "ARRAY",
|
||||
},
|
||||
|
||||
// Perm levels
|
||||
|
@ -40,7 +41,7 @@ const config = {
|
|||
name: "Moderator",
|
||||
check: (message) => {
|
||||
try {
|
||||
if (message.member.roles.has(message.settings.modRole)) return true;
|
||||
if (message.member.roles.cache.has(message.settings.modRole)) return true;
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
|
@ -51,7 +52,7 @@ const config = {
|
|||
name: "Administrator",
|
||||
check: (message) => {
|
||||
try {
|
||||
if (message.member.roles.has(message.settings.adminRole)) return true;
|
||||
if (message.member.roles.cache.has(message.settings.adminRole) || message.member.permissions.has("ADMINISTRATOR")) return true;
|
||||
} catch (e) {
|
||||
return false;
|
||||
}
|
||||
|
@ -63,6 +64,6 @@ const config = {
|
|||
check: (message) => message.channel.type === "text" ? (message.guild.ownerID === message.author.id ? true : false) : false
|
||||
},
|
||||
]
|
||||
};
|
||||
};
|
||||
|
||||
module.exports = config;
|
||||
module.exports = config;
|
||||
|
|
Loading…
Reference in a new issue