Compare commits

..

1 Commits

Author SHA1 Message Date
FloppyMacguffum
af0a814375
Merge c0bf9b3254 into 1687d30417 2024-11-28 10:47:31 -08:00

View File

@ -30,7 +30,6 @@ import { SkinServer } from "./skins/SkinServer.js";
let instanceCount = 0; let instanceCount = 0;
const chalk = new Chalk({ level: 2 }); const chalk = new Chalk({ level: 2 });
const motdMatcher = /accept: motd/i;
export class Proxy extends EventEmitter { export class Proxy extends EventEmitter {
public packetRegistry: Map< public packetRegistry: Map<
@ -190,7 +189,7 @@ export class Proxy extends EventEmitter {
} }
}, this.LOGIN_TIMEOUT); }, this.LOGIN_TIMEOUT);
try { try {
if (motdMatcher.test(firstPacket.toString())) { if (new RegExp("accept: motd", "i").test(firstPacket.toString())) {
if (!this.ratelimit.motd.consume(req.socket.remoteAddress).success) { if (!this.ratelimit.motd.consume(req.socket.remoteAddress).success) {
return ws.close(); return ws.close();
} }