Skip to content

Commit 4fa94fe

Browse files
Fix mods / Mods issue
1 parent e7b2546 commit 4fa94fe

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Source/HedgeModManager/ModdableGameGeneric.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public async Task InitializeAsync()
8282
string mainPath = Path.Combine(Root, DefaultDatabaseDirectory, ModDatabaseGeneric.DefaultDatabaseName);
8383
string altPath = Path.Combine(Root, "Mods", ModDatabaseGeneric.DefaultDatabaseName);
8484

85-
if (!Directory.Exists(mainPath) && Directory.Exists(altPath))
85+
if (!File.Exists(mainPath) && File.Exists(altPath))
8686
{
8787
mainPath = altPath;
8888
}

0 commit comments

Comments
 (0)