From e89fcb53142b2eecc6ca534f6a2f3f451983dcaf Mon Sep 17 00:00:00 2001 From: smyalygames Date: Sat, 11 Feb 2023 20:50:32 +0000 Subject: [PATCH] feat(arabot): change user and mod in embed to inline --- src/commands/mod/restriction/restrict.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/mod/restriction/restrict.ts b/src/commands/mod/restriction/restrict.ts index 5175f40..45136a9 100644 --- a/src/commands/mod/restriction/restrict.ts +++ b/src/commands/mod/restriction/restrict.ts @@ -318,10 +318,10 @@ export class RestrictCommand extends Command { .setColor('#FF6700') .setAuthor({ name: `Restricted ${member.user.tag}`, iconURL: `${member.user.avatarURL()}` }) .addFields( - { name: 'User', value: `${member}` }, - { name: 'Moderator', value: `${mod}` }, + { name: 'User', value: `${member}`, inline: true }, + { name: 'Moderator', value: `${mod}`, inline: true }, + { name: 'Reason', value: reason }, ) - .addFields({ name: 'Reason', value: reason }) .setTimestamp() .setFooter({ text: `ID: ${member.id}` });