From 27832adf17fd07071dd18cfe5d28ea0a10585d82 Mon Sep 17 00:00:00 2001 From: SuperMarioDaBom Date: Fri, 21 Feb 2025 09:58:04 -0800 Subject: [PATCH] Change NEX version to match used structure versions instead of what is in the RPX --- nex/authentication.go | 1 + nex/secure.go | 1 + 2 files changed, 2 insertions(+) diff --git a/nex/authentication.go b/nex/authentication.go index ea7e74b..235a694 100644 --- a/nex/authentication.go +++ b/nex/authentication.go @@ -23,6 +23,7 @@ func StartAuthenticationServer() { globals.AuthenticationServer.BindPRUDPEndPoint(globals.AuthenticationEndpoint) globals.AuthenticationServer.ByteStreamSettings.UseStructureHeader = false + // Technically this title is 3.4.2; however, it uses older-style structures and is therefore defined here as 3.3.2 globals.AuthenticationServer.LibraryVersions.SetDefault(nex.NewLibraryVersion(3, 3, 2)) globals.AuthenticationServer.AccessKey = "e7a47214" diff --git a/nex/secure.go b/nex/secure.go index 8c5dc06..cf2b1ea 100644 --- a/nex/secure.go +++ b/nex/secure.go @@ -20,6 +20,7 @@ func StartSecureServer() { globals.SecureServer.BindPRUDPEndPoint(globals.SecureEndpoint) globals.SecureServer.ByteStreamSettings.UseStructureHeader = false + // Technically this title is 3.4.2; however, it uses older-style structures and is therefore defined here as 3.3.2 globals.SecureServer.LibraryVersions.SetDefault(nex.NewLibraryVersion(3, 3, 2)) globals.SecureServer.AccessKey = "e7a47214"