2020-04-08 18:08:46 +02:00
|
|
|
const { Structures } = require('discord.js');
|
|
|
|
|
|
|
|
const Guild = Structures.extend('Guild', (Guild) => {
|
|
|
|
|
|
|
|
class ExtendedGuild extends Guild {
|
|
|
|
|
|
|
|
constructor(...args) {
|
|
|
|
|
|
|
|
super(...args);
|
|
|
|
|
|
|
|
this._settings = null; //internal cache of current guild's settings; should ALWAYS stay the same as database.
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-11 10:06:39 +02:00
|
|
|
async resolveMembers(members, strict = false) {
|
|
|
|
|
|
|
|
return await this.client.resolver.resolveMembers(members, this, strict);
|
|
|
|
}
|
|
|
|
|
|
|
|
async resolveChannels(channels, strict = false) {
|
|
|
|
|
|
|
|
return await this.client.resolver.resolveChannels(channels, this, strict);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
async resolveRoles(roles, strict = false) {
|
|
|
|
|
|
|
|
return await this.client.resolver.resolveRoles(roles, this, strict);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-04-08 18:08:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return ExtendedGuild;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
module.exports = Guild;
|