Skip to content

Commit

Permalink
Update MEM downgrade logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgamerz committed Jun 14, 2021
1 parent 7e49e7d commit 44a0009
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ALOTInstallerCore/Helpers/MEMGUIUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public class MEMGUIUpdater
if (fileVersion >= 500)
{
// Force downgrade
Log.Warning(@"The local MEMGui version is higher than the supported version. We are forcibly downgrading this client.");
Log.Warning(@"[AICORE] The local MEMGui version is higher than the supported version. We are forcibly downgrading this version of MEM");
fileVersion = 0;
}
}
Expand Down
4 changes: 2 additions & 2 deletions ALOTInstallerCore/MEMUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,12 @@ public static void UpdateMEM(Action<long, long> downloadProgressChanged = null,
if (memVersion >= 500)
{
// Force downgrade
Log.Warning(@"The local MEMNoGui version is higher than the supported version. We are forcibly downgrading this client.");
Log.Warning(@"[AICORE] The local MEMNoGui version is higher than the supported version. We are forcibly downgrading this client.");
memVersion = 0;
}
else if (memVersion > SoakTestingMEMVersion && !Settings.BetaMode)
{
Log.Information(@"We are downgrading this client's MEMNoGui version");
Log.Information(@"[AICORE] We are downgrading this client's MEMNoGui version to a supported version for stable");
memVersion = 0;
}

Expand Down

0 comments on commit 44a0009

Please sign in to comment.