1 |
rakinar2 |
577 |
import BaseEvent from '../../utils/structures/BaseEvent'; |
2 |
|
|
import DiscordClient from '../../client/Client'; |
3 |
|
|
import { runTimeouts } from '../../utils/setTimeout'; |
4 |
|
|
import { LogLevel } from '../../services/DebugLogger'; |
5 |
|
|
import { Guild } from 'discord.js'; |
6 |
|
|
import BannedGuild from '../../models/BannedGuild'; |
7 |
|
|
|
8 |
|
|
export default class GuildDeleteEvent extends BaseEvent { |
9 |
|
|
constructor() { |
10 |
|
|
super('guildDelete'); |
11 |
|
|
} |
12 |
|
|
|
13 |
|
|
async run(client: DiscordClient, guild: Guild) { |
14 |
|
|
await client.debugLogger.logLeaveJoin(LogLevel.INFO, `Left a guild: ${guild.name} [ID: ${guild.id}]`); |
15 |
|
|
} |
16 |
|
|
} |