galactic-bot/structure/extensions/User.js

21 lines
392 B
JavaScript
Raw Normal View History

2020-04-08 18:08:46 +02:00
const { Structures } = require('discord.js');
const User = Structures.extend('User', (User) => {
class ExtendedUser extends User {
constructor(...args) {
super(...args);
this._settings = null; //internal cache of current users' settings; should ALWAYS stay the same as database.
}
}
return ExtendedUser;
});
module.exports = User;