fix logging in as mod

This commit is contained in:
Elijah R 2024-02-04 11:38:32 -05:00 committed by Elijah R
parent b4d8bbcf28
commit 63902f6cdb

View File

@ -272,7 +272,7 @@ export default class CollabVMClient {
this.perms = new Permissions(65535); this.perms = new Permissions(65535);
this.rank = Rank.Admin; this.rank = Rank.Admin;
break; break;
case "2": case "3":
this.perms = new Permissions(parseInt(msgArr[3])); this.perms = new Permissions(parseInt(msgArr[3]));
this.rank = Rank.Moderator; this.rank = Rank.Moderator;
break; break;
@ -288,6 +288,7 @@ export default class CollabVMClient {
case "2": { case "2": {
// QEMU // QEMU
this.emitter.emit('qemu', msgArr[2]); this.emitter.emit('qemu', msgArr[2]);
break;
} }
} }
} }