diff --git a/DiscordEvents/shardReconnecting.js b/DiscordEvents/shardReconnecting.js index 0d3db1d..8fb4435 100755 --- a/DiscordEvents/shardReconnecting.js +++ b/DiscordEvents/shardReconnecting.js @@ -1,10 +1,12 @@ -const { logChannel } = require('../config'); +const { + logChannel +} = require('../config'); module.exports = { name: 'shardReconnecting', run: async (client) => { - const logs = client.channels.get('672082800320577556') - const message = `Shard ${client.options.shards[client.options.shards.length - 1] + 1}/${client.options.shards.length} changed status to reconnecting`; + const logs = client.channels.get(logChannel) + const message = `Shard ${client.options.shards[client.options.shards.length - 1] + 1}/${client.options.shards.length} changed status to reconnecting`; if (logs) logs.send(message); console.log(message); diff --git a/DiscordModules/General/help.js b/DiscordModules/General/help.js index f6aab27..0c337b2 100755 --- a/DiscordModules/General/help.js +++ b/DiscordModules/General/help.js @@ -145,8 +145,8 @@ module.exports = class nHelp extends Command { } } else { Help.setDescription( - `Use ${ctx.utils.format.code( - `'help -- to get help on a specific command` + `Use \n${ctx.utils.format.code( + `'help -- to get help on a specific command` )}\n\n${short.join("\n")}` ); return ctx.send(Help);