fixed "??" message

This commit is contained in:
Neko-Life 2021-08-11 18:48:57 +07:00
parent a181614181
commit 5294e897ee
2 changed files with 32 additions and 32 deletions

View file

@ -26,7 +26,7 @@ module.exports = class cloneembed extends commando.Command {
return trySend(this.client, msg, 'ypu don\'t know what an embed is? <:cathmmLife:772716381874946068>'); return trySend(this.client, msg, 'ypu don\'t know what an embed is? <:cathmmLife:772716381874946068>');
} }
if (!args[0]) { if (!args[0]) {
return trySend(this.client, msg, 'Which message||'); return trySend(this.client, msg, 'Which message??');
} }
const sent = theMes.embeds.map(r => trySend(this.client, msg, { content: content, embed: r })); const sent = theMes.embeds.map(r => trySend(this.client, msg, { content: content, embed: r }));
if (sent) { if (sent) {

View file

@ -31,7 +31,7 @@ module.exports = class perms extends commando.Command {
channel = getChannel(msg, use); channel = getChannel(msg, use);
if (!channel || !(channel instanceof GuildChannel)) { if (!channel || !(channel instanceof GuildChannel)) {
channel = undefined; channel = undefined;
mes += "Channel unexisted||?\n"; mes += "Channel unexisted!?\n";
} }
} }
const find = arg.replace(/(?<!\\)--ch [^ ]*\s?/, ""); const find = arg.replace(/(?<!\\)--ch [^ ]*\s?/, "");