Skip to content

Commit 1f57279

Browse files
committed
AshEchoes, Ashen, Dauntless support
1 parent 4a9a441 commit 1f57279

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

FModel/ViewModels/CUE4ParseViewModel.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,7 @@ public CUE4ParseViewModel()
164164
[
165165
new(Environment.GetFolderPath(Environment.SpecialFolder.CommonApplicationData) + "\\KONAMI\\eFootball\\ST\\Download")
166166
], SearchOption.AllDirectories, versionContainer, pathComparer),
167+
_ when versionContainer.Game is EGame.GAME_AshEchoes => new AEDefaultFileProvider(gameDirectory, SearchOption.AllDirectories, versionContainer, pathComparer),
167168
_ => new DefaultFileProvider(gameDirectory, SearchOption.AllDirectories, versionContainer, pathComparer)
168169
};
169170

@@ -607,6 +608,7 @@ public void Extract(CancellationToken cancellationToken, GameFile entry, bool ad
607608
case "uplugin":
608609
case "archive":
609610
case "dnearchive": // Banishers: Ghosts of New Eden
611+
case "stUMeta": // LIS: Double Exposure
610612
case "vmodule":
611613
case "uparam": // Steel Hunters
612614
case "verse":
@@ -758,6 +760,8 @@ public void Extract(CancellationToken cancellationToken, GameFile entry, bool ad
758760
break;
759761
}
760762
case "res": // just skip
763+
case "luac": // compiled lua
764+
case "bytes": // wuthering waves
761765
break;
762766
default:
763767
{

0 commit comments

Comments
 (0)