wtf
This commit is contained in:
parent
bef6dbecf6
commit
9fd2a80167
|
@ -121,9 +121,12 @@ class Client extends EventEmitter {
|
|||
*/
|
||||
userset(name, admin) {
|
||||
if (name.length > 40 && !admin) return;
|
||||
if (this.quotas.userset) {
|
||||
if (!this.quotas.userset.attempt()) return;
|
||||
}
|
||||
if (!this.user.hasFlag('freeze_name', true) || admin) {
|
||||
this.user.name = name;
|
||||
if (!this.user.hasFlag('freeze_name', true)) {
|
||||
Database.getUserData(this, this.server).then((usr) => {
|
||||
Database.updateUser(this.user._id, this.user);
|
||||
|
||||
|
@ -135,6 +138,7 @@ class Client extends EventEmitter {
|
|||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Set rate limits
|
||||
|
|
Loading…
Reference in New Issue