Various changes along with some initial perm stuff

This commit is contained in:
MathMan05
2024-06-24 15:35:59 -05:00
parent 01c2439c24
commit f79b108b0d
8 changed files with 319 additions and 22 deletions

View File

@@ -341,12 +341,10 @@ class guild{
})
}
fillMember(member){
member.guild=this;
const realroles=[];
for(const thing of member.roles){
realroles.push(this.getRole(thing));
}
member.guild=this;
member.roles=realroles;
return member;
}