From 3f58bf2c01a3f4feda2efdc9eef0596e6640e766 Mon Sep 17 00:00:00 2001 From: Tinglyyy Date: Sun, 18 Jan 2026 12:24:31 +0100 Subject: [PATCH] Fixed NullPointerException on Client Bridge initialization that occurred because of a copy & paste mistake (wrongly assumed the protocolINSServer was set for the client) --- pom.xml | 2 +- .../org/openautonomousconnection/protocol/ProtocolBridge.java | 3 --- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index d5b838d..ad8c95c 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ org.openautonomousconnection protocol - 1.0.0-BETA.5.1 + 1.0.0-BETA.5.2 Open Autonomous Connection https://open-autonomous-connection.org/ diff --git a/src/main/java/org/openautonomousconnection/protocol/ProtocolBridge.java b/src/main/java/org/openautonomousconnection/protocol/ProtocolBridge.java index 51bddf8..00ce94d 100644 --- a/src/main/java/org/openautonomousconnection/protocol/ProtocolBridge.java +++ b/src/main/java/org/openautonomousconnection/protocol/ProtocolBridge.java @@ -173,9 +173,6 @@ public final class ProtocolBridge { // Register the appropriate listeners and packets registerListeners(); registerPackets(); - - // Assign Bridge - protocolINSServer.attachBridge(this); } /**