Parent Directory
|
Revision Log
chore: add old version archive branches (2.x to 9.x-dev)
1 | import { Guild } from "discord.js"; |
2 | import EventListener from "../../core/EventListener"; |
3 | import { Events } from "../../types/ClientEvents"; |
4 | |
5 | export default class GuildCreateEvent extends EventListener<Events.GuildCreate> { |
6 | public readonly name = Events.GuildCreate; |
7 | |
8 | async execute(guild: Guild) { |
9 | if (!process.env.PRIVATE_BOT_MODE) { |
10 | this.client.configManager.autoConfigure(guild.id); |
11 | } |
12 | } |
13 | } |
[email protected] | ViewVC Help |
Powered by ViewVC 1.1.26 |