aboutsummaryrefslogtreecommitdiff
path: root/src/listeners/automod/automodUpdate.ts
blob: 4c623cb76ae6acd4fb86da728fa9ade53fea4762 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { BotListener, Emitter, MessageAutomod, type BotClientEvents } from '#lib';
import { Events } from 'discord.js';

export default class AutomodMessageUpdateListener extends BotListener {
	public constructor() {
		super('automodUpdate', {
			emitter: Emitter.Client,
			event: Events.MessageUpdate
		});
	}

	public async exec(...[_, newMessage]: BotClientEvents[Events.MessageUpdate]) {
		const fullMessage = newMessage.partial ? await newMessage.fetch().catch(() => null) : newMessage;
		if (!fullMessage?.member) return;
		return new MessageAutomod(fullMessage);
	}
}