Various improvements and checks

This commit is contained in:
MathMan05
2024-08-20 14:17:54 -05:00
parent a2abc91a2a
commit 1608d00beb
30 changed files with 541 additions and 360 deletions

View File

@@ -38,7 +38,7 @@ class Role{
get localuser():Localuser{
return this.guild.localuser;
}
getColor():string{
getColor():string|null{
if(this.color===0){return null};
return `#${this.color.toString(16)}`;
}