We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 532e8a0 commit b1a0590Copy full SHA for b1a0590
Penumbra/Mods/Editor/ModMerger.cs
@@ -196,7 +196,7 @@ bool GetFullPath(FullPath input, out FullPath ret)
196
{
197
if (fromFileToFile)
198
199
- if (!_fileToFile.TryGetValue(input.FullName, out var s))
+ if (!_fileToFile.TryGetValue(input.FullName.ToLowerInvariant(), out var s))
200
201
ret = input;
202
return false;
@@ -238,7 +238,7 @@ private void CopyFiles(DirectoryInfo directory)
238
Directory.CreateDirectory(finalDir);
239
file.CopyTo(path);
240
Penumbra.Log.Verbose($"[Merger] Copied file {file.FullName} to {path}.");
241
- _fileToFile.Add(file.FullName, path);
+ _fileToFile.Add(file.FullName.ToLowerInvariant(), path);
242
}
243
244
0 commit comments