feat/40-reroll-on-disinterest #54

Merged
kenobi merged 73 commits from feat/40-reroll-on-disinterest into master 2023-11-19 20:24:36 +01:00
Showing only changes of commit e3e755011d - Show all commits

View File

@ -0,0 +1,6 @@
import { Message } from "discord.js";
export function messageIsVoteMessage(msg: Message): boolean {
magnetotail marked this conversation as resolved Outdated

Would like an enum of message types and a method with input message and output array of message types for possible messages with multiple things.

Also maybe remove message at start of function names to improve visibility by shorter function name. "isVoteMessage(message)" is precise and readable enough

Would like an enum of message types and a method with input message and output array of message types for possible messages with multiple things. Also maybe remove message at start of function names to improve visibility by shorter function name. "isVoteMessage(message)" is precise and readable enough
return msg.content.includes('[Abstimmung]')
}