Create option "none of that" in voting
	
		
			
	
		
	
	
		
	
		
			All checks were successful
		
		
	
	
		
			
				
	
				Compile the repository / compile (pull_request) Successful in 1m19s
				
			
		
		
	
	
				
					
				
			
		
			All checks were successful
		
		
	
	Compile the repository / compile (pull_request) Successful in 1m19s
				
			This commit is contained in:
		@@ -6,11 +6,13 @@ import { client, yavinJellyfinHandler } from "../..";
 | 
			
		||||
import { config } from "../configuration";
 | 
			
		||||
import { Maybe } from "../interfaces";
 | 
			
		||||
import { logger } from "../logger";
 | 
			
		||||
import { SemanticClassificationFormat } from "typescript";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
export const name = 'guildScheduledEventCreate'
 | 
			
		||||
 | 
			
		||||
export enum Emotes { "1️⃣", "2️⃣", "3️⃣", "4️⃣", "5️⃣", "6️⃣", "7️⃣", "8️⃣", "9️⃣", "🔟" }
 | 
			
		||||
export const NONE_OF_THAT = "❌"
 | 
			
		||||
 | 
			
		||||
export let task: ScheduledTask | undefined
 | 
			
		||||
 | 
			
		||||
@@ -40,11 +42,12 @@ export async function execute(event: GuildScheduledEvent) {
 | 
			
		||||
        }
 | 
			
		||||
        const date = format(event.scheduledStartAt, "dd.MM")
 | 
			
		||||
        const time = format(event.scheduledStartAt, "HH:mm")
 | 
			
		||||
        let message = `[Abstimmung]\n<@&${config.bot.announcement_role}> Es gibt eine neue Abstimmung für die nächste Watchparty am ${date} um ${time}}! Stimme hierunter für den nächsten Film ab!\n`
 | 
			
		||||
        let message = `[Abstimmung]\n<@&${config.bot.announcement_role}> Es gibt eine neue Abstimmung für die nächste Watchparty am ${date} um ${time}! Stimme hierunter für den nächsten Film ab!\n`
 | 
			
		||||
 | 
			
		||||
        for (let i = 0; i < movies.length; i++) {
 | 
			
		||||
            message = message.concat(Emotes[i]).concat(": ").concat(movies[i]).concat("\n")
 | 
			
		||||
        }
 | 
			
		||||
        message = message.concat(NONE_OF_THAT).concat(": Wenn dir nichts davon gefällt.")
 | 
			
		||||
 | 
			
		||||
        const options: MessageCreateOptions = {
 | 
			
		||||
            allowedMentions: { parse: ["roles"]},
 | 
			
		||||
@@ -56,6 +59,7 @@ export async function execute(event: GuildScheduledEvent) {
 | 
			
		||||
        for (let i = 0; i < movies.length; i++) {
 | 
			
		||||
            sentMessage.react(Emotes[i])
 | 
			
		||||
        }
 | 
			
		||||
        sentMessage.react(NONE_OF_THAT)
 | 
			
		||||
 | 
			
		||||
        // sentMessage.pin() //todo: uncomment when bot has permission to pin messages. Also update closepoll.ts to only fetch pinned messages
 | 
			
		||||
    }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user