From 4e6811cfaa2af70d76eeb7a5dc26215035e40241 Mon Sep 17 00:00:00 2001 From: Fabian Date: Mon, 10 Jul 2023 15:54:27 +0200 Subject: [PATCH] Exclude all versions up from 10.1.5 from legacy cert mode. New release available on https://github.com/Arctium/WoW-Launcher/releases --- src/Launcher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Launcher.cs b/src/Launcher.cs index 64edba5..ab452d8 100644 --- a/src/Launcher.cs +++ b/src/Launcher.cs @@ -167,7 +167,7 @@ static class Launcher // We need to cache this here since we are using our RSA modulus as auth seed. var modulusOffset = memory.Data.FindPattern(Patterns.Common.SignatureModulus); - var legacyCertMode = clientVersion is (1, >= 14, <= 3, _) or (3, 4, <= 1, _) or (9, _, _, _) or (10, <= 1, _, _) and not (10, 1, 5, _); + var legacyCertMode = clientVersion is (1, >= 14, <= 3, _) or (3, 4, <= 1, _) or (9, _, _, _) or (10, <= 1, < 5, _); if (legacyCertMode) {