1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 07:41:56 +00:00
musix-oss/index.js

13 lines
491 B
JavaScript
Raw Normal View History

2020-03-13 20:31:04 +00:00
const config = require("./struct/config/config.js");
if (config.devMode) {
config.token = config.devToken;
config.shards = 1;
}
const { ShardingManager } = require('discord.js');
const manager = new ShardingManager('./bot.js', { token: config.token, respawn: true, totalShards: config.shards });
console.log('Launching shards...');
manager.spawn(config.shards, config.shardDelay, config.shardTimeout);
manager.on('shardCreate', shard => console.log(`Launched shard ${shard.id}`));