Skip to content

Commit

Permalink
prettier D:
Browse files Browse the repository at this point in the history
  • Loading branch information
Szedann committed Jan 1, 2024
1 parent 5ebc348 commit 8af3743
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/handlers/spam.handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,10 @@ export const spamHandler: Handler = (client) => {
}));

suspicion.level += otherSuspicions.level;
suspicion.reasons = new Set([...suspicion.reasons, ...otherSuspicions.reasons]);
suspicion.reasons = new Set([
...suspicion.reasons,
...otherSuspicions.reasons,
]);

const logChannel = await message.guild?.channels.fetch(
process.env.MESSAGE_LOGS_CHANNEL
Expand Down

0 comments on commit 8af3743

Please sign in to comment.