Create Member class, stop storing member data separately and merge into one class with a User

This commit is contained in:
hydrabolt
2016-04-16 23:24:52 +01:00
parent ccffe09bca
commit 30f5e2943a
5 changed files with 62 additions and 22 deletions

View File

@@ -6,8 +6,6 @@ class GuildDataStore extends AbstractDataStore{
constructor() {
super();
this.memberData = {};
this.register('members');
this.register('channels');
}