forked from Supositware/Haha-Yes
"using slash" instead of "with slash"
This commit is contained in:
parent
633f0a6fec
commit
d925e62004
2 changed files with 4 additions and 4 deletions
|
@ -30,10 +30,10 @@ export default {
|
|||
const isOptOut = await db.optout.findOne({ where: { userID: interaction.user.id } });
|
||||
|
||||
if (isOptOut) {
|
||||
console.log(`A user launched command \x1b[33m${commandName}\x1b[0m with slash`);
|
||||
console.log(`A user launched command \x1b[33m${commandName}\x1b[0m using slash`);
|
||||
}
|
||||
else {
|
||||
console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m with slash`);
|
||||
console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using slash`);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -296,10 +296,10 @@ export default {
|
|||
const isOptOut = await db.optout.findOne({ where: { userID: message.author.id } });
|
||||
|
||||
if (isOptOut) {
|
||||
console.log(`A user launched command \x1b[33m${commandName}\x1b[0m with prefix`);
|
||||
console.log(`A user launched command \x1b[33m${commandName}\x1b[0m using prefix`);
|
||||
}
|
||||
else {
|
||||
console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m with prefix`);
|
||||
console.log(`\x1b[33m${userTag} (${userID})\x1b[0m launched command \x1b[33m${commandName}\x1b[0m using prefix`);
|
||||
}
|
||||
|
||||
// Owner only check
|
||||
|
|
Loading…
Reference in a new issue