Cleaner Looking args

This commit is contained in:
Daniel Odendahl Jr
2017-05-02 17:54:07 +00:00
parent 57ee7fa82b
commit 3bb21c2df0
83 changed files with 787 additions and 616 deletions
+7 -6
View File
@@ -1,6 +1,5 @@
const { Command } = require('discord.js-commando');
const { RichEmbed } = require('discord.js');
const { version } = require('../../package');
const moment = require('moment');
require('moment-duration-format');
@@ -14,11 +13,13 @@ module.exports = class ShardInfoCommand extends Command {
group: 'util',
memberName: 'shardinfo',
description: 'Gives some bot info for the Shard you specify.',
args: [{
key: 'shard',
prompt: 'Which Shard would you like to get data for?',
type: 'integer'
}]
args: [
{
key: 'shard',
prompt: 'Which Shard would you like to get data for?',
type: 'integer'
}
]
});
}