This commit is contained in:
Hri7566 2023-10-25 00:01:28 -04:00
parent 16b4a93e72
commit 3994368f3c
1 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,9 @@
/**
* Socket connection module
*
* Represents user connections
*/
import { createColor, createID, createUserID } from "../util/id";
import EventEmitter from "events";
import {
@ -303,6 +309,7 @@ export class Socket extends EventEmitter {
public async userset(name?: string, color?: string) {
let isColor = false;
// Color changing
if (color && config.enableColorChanging) {
isColor =
typeof color === "string" && !!color.match(/^#[0-9a-f]{6}$/i);