Allow bot owner to delete custom commands
This commit is contained in:
parent
b07418e03c
commit
b872e88f85
2 changed files with 7 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
const fs = require('fs')
|
||||
module.exports = function(customName, author){
|
||||
module.exports = function(customName, author, owners){
|
||||
const customPath = './data/customCommands.json';
|
||||
let sendText = "This custom command does not exist.";
|
||||
let json = fs.readFileSync(customPath, 'utf8');
|
||||
|
@ -7,10 +7,10 @@ module.exports = function(customName, author){
|
|||
let index = 0;
|
||||
customCommands.forEach(function (customCommand) {
|
||||
if (customCommand.customName === customName) {
|
||||
if(customCommand.author === author){
|
||||
customCommands.splice(index, 1)
|
||||
sendText = `The custom command "${customName}" has been deleted.`
|
||||
fs.writeFileSync(customPath, JSON.stringify(customCommands, null, 4))
|
||||
if(customCommand.author === author || owners.indexOf(author.toString()) != -1 ){
|
||||
customCommands.splice(index, 1)
|
||||
sendText = `The custom command "${customName}" has been deleted.`
|
||||
fs.writeFileSync(customPath, JSON.stringify(customCommands, null, 4))
|
||||
}else {
|
||||
sendText = "You do not own this custom command.\nOnly the one who created the custom command can delete it."
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue