0
0
mirror of https://github.com/sp-tarkov/assembly-tool.git synced 2025-02-12 17:10:45 -05:00

Fix remapper error

This commit is contained in:
Cj 2025-01-01 20:10:41 -05:00
parent 17df885ea8
commit 9f2165f325

View File

@ -27,6 +27,12 @@ public class AutoMatchCommand : ICommand
DataProvider.IsCli = true;
DataProvider.LoadAppSettings();
var remapperSettings = DataProvider.Settings!.Remapper!.MappingSettings;
remapperSettings!.RenameFields = true;
remapperSettings.RenameProperties = true;
remapperSettings.Publicize = true;
Logger.LogSync("Finding match...");
var remaps = new List<RemapModel>();