Added ability to disable tags for a server, added way to remove warnings
This commit is contained in:
parent
8b346240e9
commit
e0d7ea7a57
5 changed files with 52 additions and 24 deletions
|
@ -11,7 +11,8 @@ module.exports = async (guild) => {
|
|||
tags: misc.tagDefaults,
|
||||
prefix: "&",
|
||||
warns: {},
|
||||
disabledChannels: []
|
||||
disabledChannels: [],
|
||||
tagsDisabled: false
|
||||
});
|
||||
await guildDB.save();
|
||||
};
|
||||
|
|
|
@ -26,7 +26,8 @@ module.exports = async () => {
|
|||
tags: misc.tagDefaults,
|
||||
prefix: "&",
|
||||
warns: {},
|
||||
disabledChannels: []
|
||||
disabledChannels: [],
|
||||
tagsDisabled: false
|
||||
});
|
||||
await newGuild.save();
|
||||
} else if (guildDB) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue