The helper bot for LHT
https://lhtranslation.net
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
521 B
10 lines
521 B
module.exports = async client => {
|
|
client.basePrefix = client.config.options.dev ? client.config.options.prefix || client.config.bot.devPrefix : client.config.bot.prefix;
|
|
|
|
//await require('../../../api/index')(client);
|
|
|
|
require('../../startup/run/hello')(client); // startup info
|
|
require('../../startup/run/setstatus')(client);
|
|
|
|
client.log(client.utils.gr(client.config.randResp.cliloaded), {color: "#78d9f8", source: client.config.bot.consoleName}, true, true); //senko doing some more complaining
|
|
}; |