mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-07 06:45:31 +02:00
Fix in Info Again
This commit is contained in:
@@ -32,7 +32,7 @@ module.exports = class InfoCommand extends commando.Command {
|
||||
}
|
||||
let shardID = args.shardID + 1 || this.client.shardID + 1;
|
||||
shardID = shardID - 1;
|
||||
if (shardID > this.client.options.shardCount + 1 || shardID < 0) {
|
||||
if (!shardID || shardID > this.client.options.shardCount + 1 || shardID < 0) {
|
||||
return message.say(':x: Error! Invalid Shard!');
|
||||
}
|
||||
const memory = await this.client.shard.broadcastEval('Math.round(process.memoryUsage().heapUsed / 1024 / 1024)');
|
||||
|
||||
@@ -6,7 +6,7 @@ module.exports = class InviteCommand extends commando.Command {
|
||||
name: 'invite',
|
||||
group: 'botinfo',
|
||||
memberName: 'invite',
|
||||
description: 'Sends you an invite for the bot, or an invite to my server, Heroes of Dreamland. (;invite)',
|
||||
description: 'Sends you an invite for the bot and an invite to my server. (;invite)',
|
||||
examples: [';invite']
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user