We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e293f66 commit 75d6399Copy full SHA for 75d6399
LuteBot/UI/LuteBotForm.cs
@@ -169,7 +169,7 @@ public LuteBotForm()
169
{
170
171
// Parse the version into something we can compare
172
- var firstGoodVersions = "3.6.0".Split('.');
+ var firstGoodVersions = "3.6.2".Split('.');
173
var lastversions = ConfigManager.GetProperty(PropertyItem.LastVersion).Split('.');
174
175
@@ -403,7 +403,7 @@ public bool IsLuteModInstalled()
403
if (existingVers.Length <= i || existingVers[i] < curVers[i])
404
405
// This doesn't really go here but oh well; if they have an existing old version, force an update then return true
406
- InstallLuteMod();
+ //InstallLuteMod(); // People got whiny about this
407
return true;
408
}
409
0 commit comments