Closed lingsamuel closed 6 months ago
The fix: change ESLifyEverything\ESLifySteps.cs#L1584
IEnumerable<string> configFiles = Directory.GetDirectories(openAnimationReplacerFolder,
"config.json",
SearchOption.AllDirectories);
to
IEnumerable<string> configFiles = Directory.GetFiles(openAnimationReplacerFolder,
"config.json",
SearchOption.AllDirectories);
I just compact and ESLify
SkyrimSpearMechanic.esp
, and runESLifyEverything
. It successfully processed DAR_conditions.txt
, even though they are not in correct directory. This is the output result:Note that there is a dot prefix before
DynamicAnimationReplacer
, because these DAR files are converted to OAR format by DAR to OAR Batch Converter.The
_conditions.txt
content is correct:But the valid
config.json
files underOpenAnimationReplacer
are not updated (this config file comes from modSmooth Moveset
):