From 6ff6a7d4a47f68e78d9ab91a6b5a81611f8cc4fa Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Fri, 29 Aug 2025 08:03:01 -0400 Subject: [PATCH] Uncomment MPQ, still not hooked back up --- ExtractionTool/Program.cs | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/ExtractionTool/Program.cs b/ExtractionTool/Program.cs index 6d6b3f62..e57d70c7 100644 --- a/ExtractionTool/Program.cs +++ b/ExtractionTool/Program.cs @@ -224,18 +224,19 @@ namespace ExtractionTool } // MoPaQ (MPQ) archive -- Reimplement - // else if (wrapper is MoPaQ mpq) - // { - // Console.WriteLine("Extracting MoPaQ contents"); - // Console.WriteLine(); + else if (wrapper is MoPaQ mpq) + { + Console.WriteLine("Extracting MoPaQ contents"); + Console.WriteLine(); #if NET20 || NET35 || !(WINX86 || WINX64) - // Console.WriteLine("Extraction is not supported for this framework!"); - // Console.WriteLine(); + Console.WriteLine("Extraction is not supported for this framework!"); + Console.WriteLine(); #else - // mpq.Extract(stream, file, outputDirectory, includeDebug: true); + Console.WriteLine("Extraction needs to be reimplemented for this framework!"); + Console.WriteLine(); #endif - // } + } // New Executable else if (wrapper is NewExecutable nex)