Merge pull request #12 from mudkipscience/dev

Dev
This commit is contained in:
Emily 2020-03-26 07:48:32 +00:00 committed by GitHub
commit 3b8503c024
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 5 deletions

View File

@ -18,7 +18,7 @@ module.exports = client => {
if(client.config.consoleLogs.length > 0) {
try {
channel1 = client.guilds.cache.get(client.config.consoleLogs)
channel1 = guild.channels.cache.get(client.config.consoleLogs)
} catch(err) {
client.logger.error("Could not find consoleLogs channel (is the ID valid?):\n" + err);
process.exit(1);
@ -35,15 +35,13 @@ module.exports = client => {
};
};
if(client.devmode == true) {
client.logger.warn("Running in development mode.")
prefix = client.config.defaultSettings.devprefix;
} else {
prefix = client.config.defaultSettings.prefix;
if(channel1) {
channel1.send(`Bot started at \`${timestamp}\``);
if(channel) {
channel.send(`Bot started at \`${timestamp}\``);
};
};