diff --git a/AssetStudioGUI/AssetStudioGUIForm.cs b/AssetStudioGUI/AssetStudioGUIForm.cs index 50aeb93..6fd0eea 100644 --- a/AssetStudioGUI/AssetStudioGUIForm.cs +++ b/AssetStudioGUI/AssetStudioGUIForm.cs @@ -166,6 +166,10 @@ namespace AssetStudioGUI } 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();