Skip to content

Commit

Permalink
Update LE3 Script Debugger version
Browse files Browse the repository at this point in the history
  • Loading branch information
Mgamerz committed Jul 18, 2024
1 parent c34f797 commit a06b5ca
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public partial class ScriptDebuggerWindow : TrackingNotifyPropertyChangedWindowB
{
MEGame.LE1 => "LE1ScriptDebugger-v3.asi", // In M3
MEGame.LE2 => "LE2ScriptDebugger-v3.asi", // In M3
MEGame.LE3 => "LE3ScriptDebugger-v3.asi", // In M3
MEGame.LE3 => "LE3ScriptDebugger-v4.asi", // In M3
_ => throw new ArgumentOutOfRangeException(nameof(Game))
};
private void GetDebuggerASI()
Expand All @@ -51,7 +51,7 @@ private void GetDebuggerASI()
ModManagerIntegration.RequestASIInstallation(MEGame.LE2, ASIModIDs.LE2_SCRIPT_DEBUGGER, 3);
break;
case MEGame.LE3:
ModManagerIntegration.RequestASIInstallation(MEGame.LE3, ASIModIDs.LE3_SCRIPT_DEBUGGER, 3);
ModManagerIntegration.RequestASIInstallation(MEGame.LE3, ASIModIDs.LE3_SCRIPT_DEBUGGER, 4);
break;
}
}
Expand Down

0 comments on commit a06b5ca

Please sign in to comment.