From c30808f3babff646416e74c626cf1c263f7e2205 Mon Sep 17 00:00:00 2001 From: Razmoth <32140579+Razmoth@users.noreply.github.com> Date: Tue, 3 Oct 2023 02:15:55 +0400 Subject: [PATCH] - [GUI] remove .txt batch file loading. --- AssetStudio.GUI/MainForm.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/AssetStudio.GUI/MainForm.cs b/AssetStudio.GUI/MainForm.cs index b1fb066..e3e0ec1 100644 --- a/AssetStudio.GUI/MainForm.cs +++ b/AssetStudio.GUI/MainForm.cs @@ -195,10 +195,6 @@ namespace AssetStudio.GUI } else { - if (paths.Length == 1 && File.Exists(paths[0]) && Path.GetExtension(paths[0]) == ".txt") - { - paths = File.ReadAllLines(paths[0]); - } await Task.Run(() => assetsManager.LoadFiles(paths)); } BuildAssetStructures();