From d650ae3dcc1fb62dd20e9b9267945cfe5fe55eab Mon Sep 17 00:00:00 2001 From: Sophie Marie Date: Fri, 28 Oct 2022 13:11:06 -0500 Subject: [PATCH] Put bot userID into a code block --- commands/info.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/info.js b/commands/info.js index 8cfc07f..215f4b5 100644 --- a/commands/info.js +++ b/commands/info.js @@ -26,7 +26,7 @@ module.exports = { fields: [ { name: '<:anitrox:831193012699791361> Bot Information', value: '** **' }, { name: 'Bot Name', value: `${client.user.tag}`, inline: true }, - { name: 'Bot ID', value: `${client.user.id}`, inline: true }, + { name: 'Bot ID', value: '``' + `${client.user.id}` + '``', inline: true }, { name: 'Bot Owner', value: isNaN(process.env.OWNERID) ? "Owner didn't set an OwnerID :(" : client.users.cache.get(process.env.OWNERID).username, inline: true }, { name: 'Release Type', value: config.release, inline: true }, { name: 'Version', value: config.build, inline: true },