Skip to content

Commit

Permalink
[ToolkitBase] Only h1 and h2 support the special command line flags w…
Browse files Browse the repository at this point in the history
…e use.
  • Loading branch information
num0005 committed Jun 26, 2024
1 parent 0ce6da1 commit 4243378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Launcher/ToolkitInterface/ToolkitBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ private List<string> GetArgsToPrepend()
{
List<string> args = new();

if (Profile.Generation != GameGen.Halo3 && Profile.IsMCC)
if ((Profile.Generation == GameGen.Halo1 || Profile.Generation == GameGen.Halo2) && Profile.IsMCC)
{
if (!IsDefaultTagDirectory())
{
Expand Down

0 comments on commit 4243378

Please sign in to comment.