Add client to listeners
This commit is contained in:
parent
e176dc113f
commit
e1a29c688d
1 changed files with 3 additions and 2 deletions
5
index.js
5
index.js
|
@ -15,6 +15,7 @@ const client = new Client({ intents: [Intents.FLAGS.GUILDS], shards: 'auto' });
|
||||||
client.commands = new Collection();
|
client.commands = new Collection();
|
||||||
await loadCommandFromDir('fun');
|
await loadCommandFromDir('fun');
|
||||||
await loadCommandFromDir('utility');
|
await loadCommandFromDir('utility');
|
||||||
|
await loadCommandFromDir('admin');
|
||||||
await loadCommandFromDir('owner');
|
await loadCommandFromDir('owner');
|
||||||
|
|
||||||
// Load events
|
// Load events
|
||||||
|
@ -45,10 +46,10 @@ async function loadEventFromDir(dir, listener) {
|
||||||
let event = await import(filePath);
|
let event = await import(filePath);
|
||||||
event = event.default;
|
event = event.default;
|
||||||
if (event.once) {
|
if (event.once) {
|
||||||
listener.once(event.name, (...args) => event.execute(...args));
|
listener.once(event.name, (...args) => event.execute(...args, client));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
listener.on(event.name, (...args) => event.execute(...args));
|
listener.on(event.name, (...args) => event.execute(...args, client));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue