add game command

This commit is contained in:
Tutur33
2024-02-26 11:20:08 +01:00
parent a9d92fbff6
commit 7ee772a6b9
23 changed files with 229 additions and 160 deletions
+2 -2
View File
@@ -8,8 +8,8 @@ module.exports = function run(token: string) {
client.events = new Collection();
client.commands = new Collection();
console.log(`${loadEvents(client, 'events')} events loaded`);
console.log(`${loadCommands(client, 'commands')} commands loaded`);
console.log(`${loadEvents(client, '..\\events')} events loaded`);
console.log(`${loadCommands(client, '..\\commands')} commands loaded`);
client.login(token);
};