diff --git a/commands/help.js b/commands/help.js index ad0b1a6..d340534 100644 --- a/commands/help.js +++ b/commands/help.js @@ -46,11 +46,8 @@ module.exports = { function run() { let discordSupported; let alias = command.name; - if (typeof command.discordExecute === 'undefined') { - discordSupported = 'false'; - } else { - discordSupported = 'true'; - } + if (typeof command.discordExecute === 'undefined') discordSupported = 'false'; + else discordSupported = 'true'; if (command.alias.toString() !== '') { alias = command.alias.join(', '); } @@ -90,11 +87,8 @@ module.exports = { function run() { let discordSupported; let alias = command.name; - if (typeof command.discordExecute === 'undefined') { - discordSupported = 'false'; - } else { - discordSupported = 'true'; - } + if (typeof command.discordExecute === 'undefined') discordSupported = 'false'; + else discordSupported = 'true'; if (command.alias.toString() !== '') { alias = command.alias.join(', '); }