Include owner in custom owner command message

This commit is contained in:
SileNce5k 2021-07-03 19:33:47 +02:00
parent ce885d7318
commit 8211d67326
No known key found for this signature in database
GPG key ID: C507260E7F2583AD

View file

@ -34,7 +34,7 @@ module.exports = {
client.guilds.cache.each(guild => { client.guilds.cache.each(guild => {
user = guild.members.cache.get(author); user = guild.members.cache.get(author);
}); });
sendText = `The owner of ${customName} is ${user.user.username}` sendText = `The owner of ${customName} is ${user.user.username} (id: ${user.user.id}).`
} }
break; break;