21 lines
400 B
JavaScript
21 lines
400 B
JavaScript
|
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.
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
return ExtendedGuild;
|
||
|
|
||
|
});
|
||
|
|
||
|
module.exports = Guild;
|