Skip to content

Commit 75d6399

Browse files
committed
modify lutemod auto-update to only happen once
1 parent e293f66 commit 75d6399

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

LuteBot/UI/LuteBotForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ public LuteBotForm()
169169
{
170170

171171
// Parse the version into something we can compare
172-
var firstGoodVersions = "3.6.0".Split('.');
172+
var firstGoodVersions = "3.6.2".Split('.');
173173
var lastversions = ConfigManager.GetProperty(PropertyItem.LastVersion).Split('.');
174174

175175

@@ -403,7 +403,7 @@ public bool IsLuteModInstalled()
403403
if (existingVers.Length <= i || existingVers[i] < curVers[i])
404404
{
405405
// This doesn't really go here but oh well; if they have an existing old version, force an update then return true
406-
InstallLuteMod();
406+
//InstallLuteMod(); // People got whiny about this
407407
return true;
408408
}
409409
}

0 commit comments

Comments
 (0)