mirror of
https://github.com/musix-org/musix-oss
synced 2024-11-10 08:10:18 +00:00
13 lines
366 B
JavaScript
13 lines
366 B
JavaScript
module.exports = {
|
|
name: 'restart',
|
|
alias: 'none',
|
|
usage: '',
|
|
description: 'restart all shards',
|
|
onlyDev: true,
|
|
permission: 'dev',
|
|
category: 'util',
|
|
async execute(msg, args, client, Discord, prefix, command) {
|
|
client.shard.respawnAll(client.config.shardDelay, client.config.respawnDelay, client.config.spawnTimeout);
|
|
}
|
|
};
|