Skip to content

Commit

Permalink
Fixed asm mods not being considered when prompting the user
Browse files Browse the repository at this point in the history
  • Loading branch information
evilfactory committed Oct 25, 2023
1 parent 9a7ddd2 commit 79dd558
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public void CheckInitialize()
List<ContentPackage> csharpMods = new List<ContentPackage>();
foreach (ContentPackage cp in ContentPackageManager.EnabledPackages.All)
{
if (Directory.Exists(cp.Dir + "/CSharp"))
if (Directory.Exists(cp.Dir + "/CSharp") || Directory.Exists(cp.Dir + "/bin"))
{
csharpMods.Add(cp);
}
Expand Down

0 comments on commit 79dd558

Please sign in to comment.