From 8211d6732603b3d4074e7fa2ee2c8bf0a4268dff Mon Sep 17 00:00:00 2001 From: SileNce5k Date: Sat, 3 Jul 2021 19:33:47 +0200 Subject: [PATCH] Include owner in custom owner command message --- commands/custom.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/custom.js b/commands/custom.js index 875b471..adcf54b 100644 --- a/commands/custom.js +++ b/commands/custom.js @@ -34,7 +34,7 @@ module.exports = { client.guilds.cache.each(guild => { 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;