Compare commits
	
		
			3 Commits
		
	
	
		
			3298c7a244
			...
			3d70b56eb7
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 3d70b56eb7 | |||
| 9da8f47784 | |||
| e8c58d5ff8 | 
| @ -75,7 +75,7 @@ export async function closePoll(guild: Guild, requestId: string) { | ||||
| async function sendVoteClosedMessage(event: GuildScheduledEvent, movie: string, guildId: string, requestId: string) { | ||||
|     const date = event.scheduledStartAt ? format(event.scheduledStartAt, "dd.MM") : "Fehler, event hatte kein Datum" | ||||
|     const time = event.scheduledStartAt ? format(event.scheduledStartAt, "HH:mm") : "Fehler, event hatte kein Datum" | ||||
|     const body = `[Abstimmung beendet] <@&${config.bot.announcement_role}> Wir gucken  ${movie} am ${date} um ${time}` | ||||
|     const body = `[Abstimmung beendet] für https://discord.com/events/${event.guildId}/${event.id}\n<@&${config.bot.announcement_role}> Wir gucken  ${movie} am ${date} um ${time}` | ||||
|     const options: MessageCreateOptions = { | ||||
|         content: body, | ||||
|         allowedMentions: { parse: ["roles"] } | ||||
|  | ||||
| @ -6,7 +6,6 @@ import { client, yavinJellyfinHandler } from "../.."; | ||||
| import { config } from "../configuration"; | ||||
| import { Maybe } from "../interfaces"; | ||||
| import { logger } from "../logger"; | ||||
| import { SemanticClassificationFormat } from "typescript"; | ||||
|  | ||||
|  | ||||
| export const name = 'guildScheduledEventCreate' | ||||
| @ -42,7 +41,7 @@ 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] für https://discord.com/events/${event.guildId}/${event.id}\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") | ||||
| @ -51,7 +50,7 @@ export async function execute(event: GuildScheduledEvent) { | ||||
|  | ||||
|         const options: MessageCreateOptions = { | ||||
|             allowedMentions: { parse: ["roles"]}, | ||||
|             content: message | ||||
|             content: message, | ||||
|         } | ||||
|  | ||||
|         const sentMessage: Message<true> = await (await announcementChannel.fetch()).send(options) | ||||
|  | ||||
		Reference in New Issue
	
	Block a user