mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-23 00:03:09 +02:00
commit
962ef5f58e
@ -26,7 +26,7 @@ module.exports = {
|
|||||||
let id = message.author.id.toString().substr(0, 4) + message.author.discriminator;
|
let id = message.author.id.toString().substr(0, 4) + message.author.discriminator;
|
||||||
let chan = `ticket-${id}`;
|
let chan = `ticket-${id}`;
|
||||||
|
|
||||||
if (message.guild.channels.some(channel => chan.includes(channel.name))) {
|
if (message.guild.channels.find(channel => channel.name === chan)) {
|
||||||
if (config.useEmbeds) {
|
if (config.useEmbeds) {
|
||||||
const err1 = new Discord.RichEmbed()
|
const err1 = new Discord.RichEmbed()
|
||||||
.setColor("#E74C3C")
|
.setColor("#E74C3C")
|
||||||
@ -121,4 +121,4 @@ module.exports = {
|
|||||||
|
|
||||||
// command ends here
|
// command ends here
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user