mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-23 00:03:09 +02:00
Update delete.js
This commit is contained in:
parent
af11904359
commit
2a041b29ce
@ -62,20 +62,19 @@ module.exports = {
|
|||||||
return message.channel.send(notTicket);
|
return message.channel.send(notTicket);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (message.author.id !== ticket.creator && !message.member.roles.cache.has(config.staff_role)) {
|
|
||||||
return channel.send(
|
|
||||||
new MessageEmbed()
|
|
||||||
.setColor(config.err_colour)
|
|
||||||
.setAuthor(message.author.username, message.author.displayAvatarURL())
|
|
||||||
.setTitle(':x: **No permission**')
|
|
||||||
.setDescription(`You don't have permission to delete ${channel} as it does not belong to you and you are not staff.`)
|
|
||||||
.addField('Usage', `\`${config.prefix}${this.name} ${this.usage}\`\n`)
|
|
||||||
.addField('Help', `Type \`${config.prefix}help ${this.name}\` for more information`)
|
|
||||||
.setFooter(guild.name, guild.iconURL())
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
if (message.author.id !== ticket.creator && !message.member.roles.cache.has(config.staff_role))
|
||||||
|
return channel.send(
|
||||||
|
new MessageEmbed()
|
||||||
|
.setColor(config.err_colour)
|
||||||
|
.setAuthor(message.author.username, message.author.displayAvatarURL())
|
||||||
|
.setTitle(':x: **No permission**')
|
||||||
|
.setDescription(`You don't have permission to delete ${channel} as it does not belong to you and you are not staff.`)
|
||||||
|
.addField('Usage', `\`${config.prefix}${this.name} ${this.usage}\`\n`)
|
||||||
|
.addField('Help', `Type \`${config.prefix}help ${this.name}\` for more information`)
|
||||||
|
.setFooter(guild.name, guild.iconURL())
|
||||||
|
);
|
||||||
|
|
||||||
let success;
|
let success;
|
||||||
|
|
||||||
let confirm = await message.channel.send(
|
let confirm = await message.channel.send(
|
||||||
|
Loading…
Reference in New Issue
Block a user