mirror of
https://github.com/toast-ts/Daggerbot-TS.git
synced 2024-11-17 00:10:58 -05:00
moderating the automod
This commit is contained in:
parent
09c3772dd4
commit
eb8734f7f0
@ -326,7 +326,7 @@ class punishments extends Database {
|
||||
const embedw = new this.client.embed().setColor(this.client.config.embedColor).setTitle(`Case #${warnData.id}: Warn`).setDescription(`${member.user.tag}\n<@${member.user.id}>\n(\`${member.user.id}\`)`).addFields(
|
||||
{name: 'Reason', value: `\`${reason || 'Reason unspecified'}\``}
|
||||
)
|
||||
if (moderator !== '795443537356521502') {return embedw}
|
||||
if (moderator !== client.user.id) {return embedw}
|
||||
}
|
||||
case 'mute':
|
||||
const muteData:Punishment={type, id: this.createId(), member: member.user.id, moderator, time: now};
|
||||
@ -352,7 +352,7 @@ class punishments extends Database {
|
||||
const embedm = new this.client.embed().setColor(this.client.config.embedColor).setTitle(`Case #${muteData.id}: Mute`).setDescription(`${member.user.tag}\n<@${member.user.id}>\n(\`${member.user.id}\`)`).addFields(
|
||||
{name: 'Reason', value: `\`${reason || 'Reason unspecified'}\``},
|
||||
{name: 'Duration', value: `${this.client.formatTime(timeInMillis, 4, {longNames: true, commas: true})}`})
|
||||
if (moderator !== '795443537356521502') {return embedm};
|
||||
if (moderator !== client.user.id) {return embedm};
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -450,4 +450,4 @@ class bonkCount extends Database {
|
||||
getUser(userid: string){
|
||||
return this._content[userid] || 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user