Change NEX version to match used structure versions instead of what is in the RPX

This commit is contained in:
SuperMarioDaBom 2025-02-21 09:58:04 -08:00
parent 37893b222f
commit 27832adf17
2 changed files with 2 additions and 0 deletions

View File

@ -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"

View File

@ -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"