From 65c14543f19b38524e97d54e5d34d9017540b7b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20K=C3=B6nig?= Date: Thu, 13 Oct 2022 00:20:46 +0200 Subject: [PATCH] Allow launching 10.0 clients. --- src/Launcher.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Launcher.cs b/src/Launcher.cs index 0686a30..cbc3f34 100644 --- a/src/Launcher.cs +++ b/src/Launcher.cs @@ -15,7 +15,7 @@ class Launcher var (SubFolder, BinaryName, MajorGameVersion, MinGameBuild) = gameVersion switch { #if x64 - GameVersion.Retail => ("_retail_", "Wow.exe", new[] { 9 }, 37862), + GameVersion.Retail => ("_retail_", "Wow.exe", new[] { 9, 10 }, 37862), GameVersion.Classic => ("_classic_", "WowClassic.exe", new[] { 2, 3 }, 39926), GameVersion.ClassicEra => ("_classic_era_", "WowClassic.exe", new[] { 1 }, 40347), #elif ARM64