Remove Help Examples

This commit is contained in:
Daniel Odendahl Jr
2017-04-23 17:03:17 +00:00
parent 37c9eb32ef
commit bc7153ec91
103 changed files with 112 additions and 227 deletions
+2 -3
View File
@@ -11,8 +11,7 @@ module.exports = class EmojiCommand extends Command {
],
group: 'guildinfo',
memberName: 'emoji',
description: 'Gives a list of the current server\'s emoji. (x;emoji)',
examples: ['x;emoji'],
description: 'Gives a list of the current server\'s custom emoji.',
guildOnly: true
});
}
@@ -21,6 +20,6 @@ module.exports = class EmojiCommand extends Command {
if (message.channel.type !== 'dm') {
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES'])) return;
}
return message.say(message.guild.emojis.map(e => e).join('')).catch(() => message.say(':x: Error! Something went wrong!'));
return message.say(message.guild.emojis.map(e => e).join('')).catch(() => message.say(':x: Error! Perhaps you have no custom emoji?'));
}
};
+1 -2
View File
@@ -14,8 +14,7 @@ module.exports = class GuildInfoCommand extends Command {
],
group: 'guildinfo',
memberName: 'server',
description: 'Gives some info on the current server. (x;server)',
examples: ['x;server'],
description: 'Gives some info on the current server.',
guildOnly: true
});
}