Skip to content

Commit

Permalink
Update ActivityMapEntityView.xaml.cs
Browse files Browse the repository at this point in the history
quick fix for wrong ordering, was causing a crash with source 2 stuff enabled
  • Loading branch information
DeltaDesigns committed Dec 2, 2023
1 parent ee3a020 commit 78ef510
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Charm/ActivityMapEntityView.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -339,14 +339,13 @@ public static void ExportFull(List<FileHash> dataTables, string hash)
}

Directory.CreateDirectory(savePath);
ExtractDataTables(dataTables, hash, savePath);
if (_config.GetIndvidualStaticsEnabled())
{
Directory.CreateDirectory(savePath + "/Entities");
ExportIndividual(dataTables, hash, savePath);
}

ExtractDataTables(dataTables, hash, savePath);

if (_config.GetUnrealInteropEnabled())
{
AutomatedExporter.SaveInteropUnrealPythonFile(savePath, hash, AutomatedExporter.ImportType.Map, _config.GetOutputTextureFormat(), _config.GetSingleFolderMapsEnabled());
Expand Down

0 comments on commit 78ef510

Please sign in to comment.