2023-04-15 22:06:35 +02:00
|
|
|
import { CustomError, errorCodes } from "../interfaces"
|
2023-04-16 02:02:22 +02:00
|
|
|
import { ExtendedClient } from "../structures/client"
|
2023-04-15 22:06:35 +02:00
|
|
|
|
2023-04-16 02:02:22 +02:00
|
|
|
export async function sendFailureDM(creatorMessage: string, client: ExtendedClient, creatorId?: string): Promise<void> {
|
|
|
|
if (!creatorId) throw new CustomError('No creator ID present', errorCodes.no_creator_id)
|
|
|
|
const creator = await client.users.fetch(creatorId)
|
|
|
|
console.log(`Creator ${JSON.stringify(creator)}`)
|
|
|
|
if (creator)
|
|
|
|
if (!creator.dmChannel)
|
|
|
|
await creator.createDM()
|
|
|
|
await creator.dmChannel?.send(creatorMessage)
|
2023-04-15 22:06:35 +02:00
|
|
|
}
|