Skip to content

Commit

Permalink
Fixed Issue with Existing MelonLoader Install Check Failing to Detect
Browse files Browse the repository at this point in the history
  • Loading branch information
HerpDerpinstine committed Jan 9, 2021
1 parent f790bc9 commit 64b4135
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
### Version List:

[v3.0.2](#v302)
[v3.0.1](#v301)
[v3.0.0](#v300)

---

### v3.0.2:

1. Fixed Issue with Existing MelonLoader Install Check Failing to Detect.

---

### v3.0.1:

1. Fixed Issue with "Show ALPHA Pre-Releases" Setting not Coloring properly.
Expand Down
2 changes: 1 addition & 1 deletion MainForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ private void CheckUnityGame()
string folder_path = Path.Combine(Path.GetDirectoryName(Automated_UnityGame_Display.Text), "MelonLoader");
string legacy_file_path = Path.Combine(folder_path, "MelonLoader.ModHandler.dll");
string file_path = Path.Combine(folder_path, "MelonLoader.dll");
if (!File.Exists(legacy_file_path) || !File.Exists(file_path))
if (!File.Exists(legacy_file_path) && !File.Exists(file_path))
{
ManualZip_Install.Text = "INSTALL";
Automated_Install.Text = "INSTALL";
Expand Down
2 changes: 1 addition & 1 deletion Properties/BuildInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ public static class BuildInfo
public const string Description = "MelonLoader Installer";
public const string Author = "Lava Gang";
public const string Company = "discord.gg/2Wn3N2P";
public const string Version = "3.0.1";
public const string Version = "3.0.2";
}
}

0 comments on commit 64b4135

Please sign in to comment.