mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-31 21:03:48 +01:00
Allow root directory overwriting with case sensitivity.
This commit is contained in:
parent
159942f29c
commit
f51fc2cafd
1 changed files with 1 additions and 1 deletions
|
|
@ -266,7 +266,7 @@ public sealed class ModManager : ModStorage, IDisposable
|
|||
/// </summary>
|
||||
private void SetBaseDirectory(string newPath, bool firstTime)
|
||||
{
|
||||
if (!firstTime && string.Equals(newPath, _config.ModDirectory, StringComparison.OrdinalIgnoreCase))
|
||||
if (!firstTime && string.Equals(newPath, _config.ModDirectory, StringComparison.Ordinal))
|
||||
return;
|
||||
|
||||
if (newPath.Length == 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue