Fixed NullPointerException on Client Bridge initialization that occurred because of a copy & paste mistake (wrongly assumed the protocolINSServer was set for the client)

This commit is contained in:
Tinglyyy
2026-01-18 12:24:31 +01:00
parent 5e596a4cf7
commit 3f58bf2c01
2 changed files with 1 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
<groupId>org.openautonomousconnection</groupId> <groupId>org.openautonomousconnection</groupId>
<artifactId>protocol</artifactId> <artifactId>protocol</artifactId>
<version>1.0.0-BETA.5.1</version> <version>1.0.0-BETA.5.2</version>
<organization> <organization>
<name>Open Autonomous Connection</name> <name>Open Autonomous Connection</name>
<url>https://open-autonomous-connection.org/</url> <url>https://open-autonomous-connection.org/</url>

View File

@@ -173,9 +173,6 @@ public final class ProtocolBridge {
// Register the appropriate listeners and packets // Register the appropriate listeners and packets
registerListeners(); registerListeners();
registerPackets(); registerPackets();
// Assign Bridge
protocolINSServer.attachBridge(this);
} }
/** /**