This commit is contained in:
Christer Warén 2022-04-06 21:46:13 +03:00
parent e6c7a19648
commit ec30dcbfb8
2 changed files with 3 additions and 10 deletions

View File

@ -25,11 +25,9 @@ module.exports = class Stations extends Array {
});
if(options.show){
this.logger('Stations');
list.forEach(station => {
console.log("- " + station.name);
this.logger('Stations', station.name);
});
console.log("\n");
}
list.forEach(async station => {

View File

@ -23,20 +23,17 @@ module.exports = {
client.funcs.logger('Datastore', 'Ready');
/*DEVELOPERS*/
client.funcs.logger('Developers');
client.developers = "";
let user = "";
for (let i = 0; i < client.config.devId.length; i++) {
user = await client.users.fetch(client.config.devId[i]);
console.log("- " + user.tag);
client.funcs.logger('Developers', user.tag);
if (i == client.config.devId.length - 1) {
client.developers += user.tag;
} else {
client.developers += user.tag + " & ";
}
}
console.log("\n");
/*STATIONS*/
client.stations = new Stations();
@ -63,12 +60,10 @@ module.exports = {
/*GUILDS*/
client.funcs.logger('Guilds', 'Started fetching list');
client.funcs.logger('Guilds');
let guilds = await client.guilds.fetch();
guilds.forEach(guild => {
console.log("- " + guild.id + " / " + guild.name);
client.funcs.logger('Guilds', guild.id + " / " + guild.name);
});
console.log("\n");
client.funcs.logger('Guilds', 'Successfully fetched list');