1 files changed, 1 insertions, 1 deletions
diff --git a/src/opcodes/PresenceUpdate.ts b/src/opcodes/PresenceUpdate.ts
index e6a389ba..3760f8a3 100644
--- a/src/opcodes/PresenceUpdate.ts
+++ b/src/opcodes/PresenceUpdate.ts
@@ -2,5 +2,5 @@ import { CLOSECODES, Payload } from "../util/Constants";
import WebSocket from "../util/WebSocket";
export function onPresenceUpdate(this: WebSocket, data: Payload) {
- return this.close(CLOSECODES.Unknown_error);
+ // return this.close(CLOSECODES.Unknown_error);
}
|