accept user ID's

This commit is contained in:
Emily 2021-03-07 01:15:07 +11:00
parent abe8c824e3
commit c58df67896
4 changed files with 58 additions and 38 deletions

View file

@ -72,7 +72,7 @@ class Functions {
let hexadecimal = object.color.toString(16);
while (hexadecimal.length < 6) {
hexadecimal = '0' + hexadecimal;
};
}
return '#' + hexadecimal;
}