Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
1 | 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 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |