From adfbf8705676829b4f24ac3daf049822d35bbbdd Mon Sep 17 00:00:00 2001 From: MagicBot Date: Sun, 31 Mar 2024 11:22:22 -0400 Subject: [PATCH] Handler update. --- src/engine/net/client/Protocol.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/engine/net/client/Protocol.java b/src/engine/net/client/Protocol.java index 2ac3bad2..fef9b5da 100644 --- a/src/engine/net/client/Protocol.java +++ b/src/engine/net/client/Protocol.java @@ -288,6 +288,10 @@ public enum Protocol { public static boolean handleClientMsg(ClientNetMsg msg) { + // Main message handler for Magicbane. All messages + // incoming from the client are executed here for + // both the login and world servers. + if (msg == null) return false;