serialise and serialize

This commit is contained in:
hydrabolt
2015-10-27 21:30:55 +00:00
parent 4f64fa6bbb
commit 3791d95b36
2 changed files with 8 additions and 0 deletions

View File

@@ -30,6 +30,10 @@ class EvaluatedPermissions {
voiceUseVoiceActivation : this.voiceUseVoiceActivation
}
}
serialize(){
return this.serialise();
}
get createInstantInvite() { return this.getBit(0); }
set createInstantInvite(val) { this.setBit(0, val); }