galactic-bot/structure/moderation/infractions/Warn.js

37 lines
803 B
JavaScript
Raw Normal View History

const { Infraction } = require('../interfaces/');
class Warn extends Infraction {
constructor(client, opts = {}) {
super(client, {
type: 'WARN',
targetType: 'user',
message: opts.message,
executor: opts.executor.user,
target: opts.target.user,
reason: opts.reason || 'N/A',
guild: opts.guild,
channel: opts.channel,
silent: opts.silent,
color: 0xffe15c,
dictionary: {
past: 'warned',
present: 'warn'
}
});
this.client = client;
this.member = opts.target;
}
async execute() {
await this.handle();
return this._succeed();
}
}
module.exports = Warn;