This commit is contained in:
Erik 2020-05-25 00:42:28 +03:00
parent 7ac552a145
commit 873d193501

View File

@ -16,6 +16,7 @@ class ModerationLogsSetting extends Setting {
'modLog',
'modLogs'
],
usage: '<method|value> [value..]',
guarded: true,
resolve: 'GUILD',
examples: [
@ -43,7 +44,7 @@ class ModerationLogsSetting extends Setting {
if (response) {
if (args.length < 2 && response.method !== 'list') return {
msg: message.format('S_MODERATIONLOG_ARGS404'),
msg: message.format('MISSING_ARGS'),
error: true
}
@ -84,15 +85,16 @@ class ModerationLogsSetting extends Setting {
}
fields(guild) {
const setting = guild._settings[this.index];
return [
{
name: '》Channel',
value: guild.resolveChannel(guild._settings[this.index]?.channel) || '`N/A`',
value: guild.resolveChannel(setting?.channel) || '`N/A`',
inline: true
},
{
name: '》Logged Infractions',
value: guild._settings[this.index].infractions.map(i=>`\`${i}\``).join(', ') || '`N/A`',
value: setting?.infractions.map(i=>`\`${i}\``).join(', ') || '`N/A`',
inline: true
}
];